kusama¶
| Properties | |
|---|---|
| Spec name | kusama |
| Implementation name | parity-kusama |
| Spec version | 9370 |
| SS58 Format | 2 |
| Token symbol | KSM |
| Token decimals | 12 |
Auctions¶
Calls¶
bid¶
Make a new bid from an account (including a parachain account) for deploying a new parachain.
Multiple simultaneous bids from the same bidder are allowed only as long as all active bids overlap each other (i.e. are mutually exclusive). Bids cannot be redacted.
subis the sub-bidder ID, allowing for multiple competing bids to be made by (and funded by) the same account.auction_indexis the index of the auction to bid on. Should just be the present value ofAuctionCounter.first_slotis the first lease period index of the range to bid on. This is the absolute lease period index value, not an auction-specific offset.last_slotis the last lease period index of the range to bid on. This is the absolute lease period index value, not an auction-specific offset.amountis the amount to bid to be held as deposit for the parachain should the bid win. This amount is held throughout the range.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| auction_index | AuctionIndex |
| first_slot | LeasePeriodOf<T> |
| last_slot | LeasePeriodOf<T> |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Auctions', 'bid', {
'amount': 'u128',
'auction_index': 'u32',
'first_slot': 'u32',
'last_slot': 'u32',
'para': 'u32',
}
)
cancel_auction¶
Cancel an in-progress auction.
Can only be called by Root origin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Auctions', 'cancel_auction', {}
)
new_auction¶
Create a new auction.
This can only happen when there isn't already an auction in progress and may only be
called by the root origin. Accepts the duration of this auction and the
lease_period_index of the initial lease period of the four that are to be auctioned.
Attributes¶
| Name | Type |
|---|---|
| duration | T::BlockNumber |
| lease_period_index | LeasePeriodOf<T> |
Python¶
call = substrate.compose_call(
'Auctions', 'new_auction', {
'duration': 'u32',
'lease_period_index': 'u32',
}
)
Events¶
AuctionClosed¶
An auction ended. All funds become unreserved.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| auction_index | AuctionIndex |
u32 |
AuctionStarted¶
An auction started. Provides its index and the block number where it will begin to close and the first lease period of the quadruplet that is auctioned.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| auction_index | AuctionIndex |
u32 |
| lease_period | LeasePeriodOf<T> |
u32 |
| ending | T::BlockNumber |
u32 |
BidAccepted¶
A new bid has been accepted as the current winner.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| bidder | T::AccountId |
AccountId |
| para_id | ParaId |
u32 |
| amount | BalanceOf<T> |
u128 |
| first_slot | LeasePeriodOf<T> |
u32 |
| last_slot | LeasePeriodOf<T> |
u32 |
ReserveConfiscated¶
Someone attempted to lease the same slot twice for a parachain. The amount is held in reserve but no parachain slot has been leased.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
| leaser | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Reserved¶
Funds were reserved for a winning bid. First balance is the extra amount reserved. Second is the total.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| bidder | T::AccountId |
AccountId |
| extra_reserved | BalanceOf<T> |
u128 |
| total_amount | BalanceOf<T> |
u128 |
Unreserved¶
Funds were unreserved since bidder is no longer active. [bidder, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| bidder | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
WinningOffset¶
The winning offset was chosen for an auction. This will map into the Winning storage map.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| auction_index | AuctionIndex |
u32 |
| block_number | T::BlockNumber |
u32 |
Storage functions¶
AuctionCounter¶
Number of auctions started so far.
Python¶
result = substrate.query(
'Auctions', 'AuctionCounter', []
)
Return value¶
'u32'
AuctionInfo¶
Information relating to the current auction, if there is one.
The first item in the tuple is the lease period index that the first of the four contiguous lease periods on auction is for. The second is the block number when the auction will "begin to end", i.e. the first block of the Ending Period of the auction.
Python¶
result = substrate.query(
'Auctions', 'AuctionInfo', []
)
Return value¶
('u32', 'u32')
ReservedAmounts¶
Amounts currently reserved in the accounts of the bidders currently winning (sub-)ranges.
Python¶
result = substrate.query(
'Auctions', 'ReservedAmounts', [('AccountId', 'u32')]
)
Return value¶
'u128'
Winning¶
The winning bids for each of the 10 ranges at each sample in the final Ending Period of
the current auction. The map's key is the 0-based index into the Sample Size. The
first sample of the ending period is 0; the last is Sample Size - 1.
Python¶
result = substrate.query(
'Auctions', 'Winning', ['u32']
)
Return value¶
"[(None, ('AccountId', 'u32', 'u128')); 36]"
Constants¶
EndingPeriod¶
The number of blocks over which an auction may be retroactively ended.
Value¶
72000
Python¶
constant = substrate.get_constant('Auctions', 'EndingPeriod')
LeasePeriodsPerSlot¶
Value¶
8
Python¶
constant = substrate.get_constant('Auctions', 'LeasePeriodsPerSlot')
SampleLength¶
The length of each sample to take during the ending period.
EndingPeriod / SampleLength = Total # of Samples
Value¶
20
Python¶
constant = substrate.get_constant('Auctions', 'SampleLength')
SlotRangeCount¶
Value¶
36
Python¶
constant = substrate.get_constant('Auctions', 'SlotRangeCount')
Errors¶
AlreadyLeasedOut¶
The para is already leased out for part of this range.
AuctionEnded¶
Auction has already ended.
AuctionInProgress¶
This auction is already in progress.
LeasePeriodInPast¶
The lease period is in the past.
NotAuction¶
Not an auction.
NotCurrentAuction¶
Not a current auction.
ParaNotRegistered¶
Para is not registered
AuthorityDiscovery¶
Authorship¶
Calls¶
set_uncles¶
Provide a set of uncles.
Attributes¶
| Name | Type |
|---|---|
| new_uncles | Vec<T::Header> |
Python¶
call = substrate.compose_call(
'Authorship', 'set_uncles', {
'new_uncles': [
{
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
],
}
)
Storage functions¶
Author¶
Author of current block.
Python¶
result = substrate.query(
'Authorship', 'Author', []
)
Return value¶
'AccountId'
DidSetUncles¶
Whether uncles were already set in this block.
Python¶
result = substrate.query(
'Authorship', 'DidSetUncles', []
)
Return value¶
'bool'
Uncles¶
Uncles
Python¶
result = substrate.query(
'Authorship', 'Uncles', []
)
Return value¶
[{'InclusionHeight': 'u32', 'Uncle': ('[u8; 32]', (None, 'AccountId'))}]
Constants¶
UncleGenerations¶
The number of blocks back we should accept uncles.
This means that we will deal with uncle-parents that are
UncleGenerations + 1 before now.
Value¶
0
Python¶
constant = substrate.get_constant('Authorship', 'UncleGenerations')
Errors¶
GenesisUncle¶
The uncle is genesis.
InvalidUncleParent¶
The uncle parent not in the chain.
OldUncle¶
The uncle isn't recent enough to be included.
TooHighUncle¶
The uncle is too high in chain.
TooManyUncles¶
Too many uncles.
UncleAlreadyIncluded¶
The uncle is already included.
UnclesAlreadySet¶
Uncles already set in the block.
Babe¶
Calls¶
plan_config_change¶
Plan an epoch config change. The epoch config change is recorded and will be enacted on
the next call to enact_epoch_change. The config will be activated one epoch after.
Multiple calls to this method will replace any existing planned config change that had
not been enacted yet.
Attributes¶
| Name | Type |
|---|---|
| config | NextConfigDescriptor |
Python¶
call = substrate.compose_call(
'Babe', 'plan_config_change', {
'config': {
None: None,
'V1': {
'allowed_slots': (
'PrimarySlots',
'PrimaryAndSecondaryPlainSlots',
'PrimaryAndSecondaryVRFSlots',
),
'c': ('u64', 'u64'),
},
},
}
)
report_equivocation¶
Report authority equivocation/misbehavior. This method will verify the equivocation proof and validate the given key ownership proof against the extracted offender. If both are valid, the offence will be reported.
Attributes¶
| Name | Type |
|---|---|
| equivocation_proof | Box<EquivocationProof<T::Header>> |
| key_owner_proof | T::KeyOwnerProof |
Python¶
call = substrate.compose_call(
'Babe', 'report_equivocation', {
'equivocation_proof': {
'first_header': {
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
'offender': '[u8; 32]',
'second_header': {
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
'slot': 'u64',
},
'key_owner_proof': {
'session': 'u32',
'trie_nodes': ['Bytes'],
'validator_count': 'u32',
},
}
)
report_equivocation_unsigned¶
Report authority equivocation/misbehavior. This method will verify
the equivocation proof and validate the given key ownership proof
against the extracted offender. If both are valid, the offence will
be reported.
This extrinsic must be called unsigned and it is expected that only
block authors will call it (validated in ValidateUnsigned), as such
if the block author is defined it will be defined as the equivocation
reporter.
Attributes¶
| Name | Type |
|---|---|
| equivocation_proof | Box<EquivocationProof<T::Header>> |
| key_owner_proof | T::KeyOwnerProof |
Python¶
call = substrate.compose_call(
'Babe', 'report_equivocation_unsigned', {
'equivocation_proof': {
'first_header': {
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
'offender': '[u8; 32]',
'second_header': {
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
'slot': 'u64',
},
'key_owner_proof': {
'session': 'u32',
'trie_nodes': ['Bytes'],
'validator_count': 'u32',
},
}
)
Storage functions¶
AuthorVrfRandomness¶
This field should always be populated during block processing unless secondary plain slots are enabled (which don't contain a VRF output).
It is set in on_finalize, before it will contain the value from the last block.
Python¶
result = substrate.query(
'Babe', 'AuthorVrfRandomness', []
)
Return value¶
(None, '[u8; 32]')
Authorities¶
Current epoch authorities.
Python¶
result = substrate.query(
'Babe', 'Authorities', []
)
Return value¶
[('[u8; 32]', 'u64')]
CurrentSlot¶
Current slot number.
Python¶
result = substrate.query(
'Babe', 'CurrentSlot', []
)
Return value¶
'u64'
EpochConfig¶
The configuration for the current epoch. Should never be None as it is initialized in
genesis.
Python¶
result = substrate.query(
'Babe', 'EpochConfig', []
)
Return value¶
{
'allowed_slots': (
'PrimarySlots',
'PrimaryAndSecondaryPlainSlots',
'PrimaryAndSecondaryVRFSlots',
),
'c': ('u64', 'u64'),
}
EpochIndex¶
Current epoch index.
Python¶
result = substrate.query(
'Babe', 'EpochIndex', []
)
Return value¶
'u64'
EpochStart¶
The block numbers when the last and current epoch have started, respectively N-1 and
N.
NOTE: We track this is in order to annotate the block number when a given pool of
entropy was fixed (i.e. it was known to chain observers). Since epochs are defined in
slots, which may be skipped, the block numbers may not line up with the slot numbers.
Python¶
result = substrate.query(
'Babe', 'EpochStart', []
)
Return value¶
('u32', 'u32')
GenesisSlot¶
The slot at which the first epoch actually started. This is 0 until the first block of the chain.
Python¶
result = substrate.query(
'Babe', 'GenesisSlot', []
)
Return value¶
'u64'
Initialized¶
Temporary value (cleared at block finalization) which is Some
if per-block initialization has already been called for current block.
Python¶
result = substrate.query(
'Babe', 'Initialized', []
)
Return value¶
(
None,
{
None: None,
'Primary': {
'authority_index': 'u32',
'slot': 'u64',
'vrf_output': '[u8; 32]',
'vrf_proof': '[u8; 64]',
},
'SecondaryPlain': {'authority_index': 'u32', 'slot': 'u64'},
'SecondaryVRF': {
'authority_index': 'u32',
'slot': 'u64',
'vrf_output': '[u8; 32]',
'vrf_proof': '[u8; 64]',
},
},
)
Lateness¶
How late the current block is compared to its parent.
This entry is populated as part of block execution and is cleaned up on block finalization. Querying this storage entry outside of block execution context should always yield zero.
Python¶
result = substrate.query(
'Babe', 'Lateness', []
)
Return value¶
'u32'
NextAuthorities¶
Next epoch authorities.
Python¶
result = substrate.query(
'Babe', 'NextAuthorities', []
)
Return value¶
[('[u8; 32]', 'u64')]
NextEpochConfig¶
The configuration for the next epoch, None if the config will not change
(you can fallback to EpochConfig instead in that case).
Python¶
result = substrate.query(
'Babe', 'NextEpochConfig', []
)
Return value¶
{
'allowed_slots': (
'PrimarySlots',
'PrimaryAndSecondaryPlainSlots',
'PrimaryAndSecondaryVRFSlots',
),
'c': ('u64', 'u64'),
}
NextRandomness¶
Next epoch randomness.
Python¶
result = substrate.query(
'Babe', 'NextRandomness', []
)
Return value¶
'[u8; 32]'
PendingEpochConfigChange¶
Pending epoch configuration change that will be applied when the next epoch is enacted.
Python¶
result = substrate.query(
'Babe', 'PendingEpochConfigChange', []
)
Return value¶
{
None: None,
'V1': {
'allowed_slots': (
'PrimarySlots',
'PrimaryAndSecondaryPlainSlots',
'PrimaryAndSecondaryVRFSlots',
),
'c': ('u64', 'u64'),
},
}
Randomness¶
The epoch randomness for the current epoch.
# Security
This MUST NOT be used for gambling, as it can be influenced by a malicious validator in the short term. It MAY be used in many cryptographic protocols, however, so long as one remembers that this (like everything else on-chain) it is public. For example, it can be used where a number is needed that cannot have been chosen by an adversary, for purposes such as public-coin zero-knowledge proofs.
Python¶
result = substrate.query(
'Babe', 'Randomness', []
)
Return value¶
'[u8; 32]'
SegmentIndex¶
Randomness under construction.
We make a trade-off between storage accesses and list length.
We store the under-construction randomness in segments of up to
UNDER_CONSTRUCTION_SEGMENT_LENGTH.
Once a segment reaches this length, we begin the next one.
We reset all segments and return to 0 at the beginning of every
epoch.
Python¶
result = substrate.query(
'Babe', 'SegmentIndex', []
)
Return value¶
'u32'
UnderConstruction¶
TWOX-NOTE: SegmentIndex is an increasing integer, so this is okay.
Python¶
result = substrate.query(
'Babe', 'UnderConstruction', ['u32']
)
Return value¶
['[u8; 32]']
Constants¶
EpochDuration¶
The amount of time, in slots, that each epoch should last. NOTE: Currently it is not possible to change the epoch duration after the chain has started. Attempting to do so will brick block production.
Value¶
600
Python¶
constant = substrate.get_constant('Babe', 'EpochDuration')
ExpectedBlockTime¶
The expected average block time at which BABE should be creating
blocks. Since BABE is probabilistic it is not trivial to figure out
what the expected average block time should be based on the slot
duration and the security parameter c (where 1 - c represents
the probability of a slot being empty).
Value¶
6000
Python¶
constant = substrate.get_constant('Babe', 'ExpectedBlockTime')
MaxAuthorities¶
Max number of authorities allowed
Value¶
100000
Python¶
constant = substrate.get_constant('Babe', 'MaxAuthorities')
Errors¶
DuplicateOffenceReport¶
A given equivocation report is valid but already previously reported.
InvalidConfiguration¶
Submitted configuration is invalid.
InvalidEquivocationProof¶
An equivocation proof provided as part of an equivocation report is invalid.
InvalidKeyOwnershipProof¶
A key ownership proof provided as part of an equivocation report is invalid.
Balances¶
Calls¶
force_transfer¶
Exactly as transfer, except the origin must be root and the source account may be
specified.
# <weight>
- Same as transfer, but additional read and write because the source account is not
assumed to be in the overlay.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| source | AccountIdLookupOf<T> |
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'force_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
force_unreserve¶
Unreserve some balance from a user by force.
Can only be called by ROOT.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'force_unreserve', {
'amount': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_balance¶
Set the balances of a given account.
This will alter FreeBalance and ReservedBalance in storage. it will
also alter the total issuance of the system (TotalIssuance) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (frame_system::AccountNonce).
The dispatch origin for this call is root.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| new_free | T::Balance |
| new_reserved | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'set_balance', {
'new_free': 'u128',
'new_reserved': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer¶
Transfer some liquid free balance to another account.
transfer will set the FreeBalance of the sender and receiver.
If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped.
The dispatch origin for this call must be Signed by the transactor.
# <weight> - Dependent on arguments but not critical, given proper implementations for input config types. See related functions below. - It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdrawis always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_accountto be called. - Removing enough funds from an account will trigger
T::DustRemoval::on_unbalanced. transfer_keep_aliveworks the same way astransfer, but has an additional check that the transfer will not kill the origin account.
- Origin account is already in memory, so no DB operations for them. # </weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_all¶
Transfer the entire transferable balance from the caller account.
NOTE: This function only attempts to transfer transferable balances. This means that
any locked, reserved, or existential deposits (when keep_alive is true), will not be
transferred by this function. To ensure that this function results in a killed account,
you might need to prepare the account by removing any reference counters, storage
deposits, etc...
The dispatch origin of this call must be Signed.
dest: The recipient of the transfer.keep_alive: A boolean to determine if thetransfer_alloperation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true). # <weight>- O(1). Just like transfer, but reading the user's transferable balance first. #</weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| keep_alive | bool |
Python¶
call = substrate.compose_call(
'Balances', 'transfer_all', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'keep_alive': 'bool',
}
)
transfer_keep_alive¶
Same as the [transfer] call, but with a check that the transfer will not kill the
origin account.
99% of the time you want [transfer] instead.
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'transfer_keep_alive', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
Events¶
BalanceSet¶
A balance was set by root.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| free | T::Balance |
u128 |
| reserved | T::Balance |
u128 |
Deposit¶
Some amount was deposited (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
DustLost¶
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Endowed¶
An account was created with some free balance.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| free_balance | T::Balance |
u128 |
ReserveRepatriated¶
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
| destination_status | Status |
('Free', 'Reserved') |
Reserved¶
Some balance was reserved (moved from free to reserved).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Slashed¶
Some amount was removed from the account (e.g. for misbehavior).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Transfer¶
Transfer succeeded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Unreserved¶
Some balance was unreserved (moved from reserved to free).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Withdraw¶
Some amount was withdrawn from the account (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions¶
Account¶
The Balances pallet example of storing the balance of an account.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
}
You can also store the balance of an account in the System pallet.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = System
}
But this comes with tradeoffs, storing account balances in the system pallet stores
frame_system data alongside the account data contrary to storing account balances in the
Balances pallet, which uses a StorageMap to store balances data only.
NOTE: This is only used in the case that this pallet is used to store balances.
Python¶
result = substrate.query(
'Balances', 'Account', ['AccountId']
)
Return value¶
{
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
}
InactiveIssuance¶
The total units of outstanding deactivated balance in the system.
Python¶
result = substrate.query(
'Balances', 'InactiveIssuance', []
)
Return value¶
'u128'
Locks¶
Any liquidity locks on some account balances. NOTE: Should only be accessed when setting, changing and freeing a lock.
Python¶
result = substrate.query(
'Balances', 'Locks', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]', 'reasons': ('Fee', 'Misc', 'All')}]
Reserves¶
Named reserves on some account balances.
Python¶
result = substrate.query(
'Balances', 'Reserves', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]'}]
TotalIssuance¶
The total units issued in the system.
Python¶
result = substrate.query(
'Balances', 'TotalIssuance', []
)
Return value¶
'u128'
Constants¶
ExistentialDeposit¶
The minimum amount required to keep an account open.
Value¶
333333333
Python¶
constant = substrate.get_constant('Balances', 'ExistentialDeposit')
MaxLocks¶
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Value¶
50
Python¶
constant = substrate.get_constant('Balances', 'MaxLocks')
MaxReserves¶
The maximum number of named reserves that can exist on an account.
Value¶
50
Python¶
constant = substrate.get_constant('Balances', 'MaxReserves')
Errors¶
DeadAccount¶
Beneficiary account must pre-exist
ExistentialDeposit¶
Value too low to create account due to existential deposit
ExistingVestingSchedule¶
A vesting schedule already exists for this account
InsufficientBalance¶
Balance too low to send value.
KeepAlive¶
Transfer/payment would kill account
LiquidityRestrictions¶
Account liquidity restrictions prevent withdrawal
TooManyReserves¶
Number of named reserves exceed MaxReserves
VestingBalance¶
Vesting balance too high to send value
Bounties¶
Calls¶
accept_curator¶
Accept the curator role for a bounty. A deposit will be reserved from curator and refund upon successful payout.
May only be called from the curator.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'Bounties', 'accept_curator', {'bounty_id': 'u32'}
)
approve_bounty¶
Approve a bounty proposal. At a later time, the bounty will be funded and become active and the original deposit will be returned.
May only be called from T::SpendOrigin.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'Bounties', 'approve_bounty', {'bounty_id': 'u32'}
)
award_bounty¶
Award bounty to a beneficiary account. The beneficiary will be able to claim the funds after a delay.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to award.beneficiary: The beneficiary account whom will receive the payout.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Bounties', 'award_bounty', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'bounty_id': 'u32',
}
)
claim_bounty¶
Claim the payout from an awarded bounty after payout delay.
The dispatch origin for this call must be the beneficiary of this bounty.
bounty_id: Bounty ID to claim.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'Bounties', 'claim_bounty', {'bounty_id': 'u32'}
)
close_bounty¶
Cancel a proposed or active bounty. All the funds will be sent to treasury and the curator deposit will be unreserved if possible.
Only T::RejectOrigin is able to cancel a bounty.
bounty_id: Bounty ID to cancel.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'Bounties', 'close_bounty', {'bounty_id': 'u32'}
)
extend_bounty_expiry¶
Extend the expiry time of an active bounty.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to extend.remark: additional information.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'Bounties', 'extend_bounty_expiry', {
'bounty_id': 'u32',
'remark': 'Bytes',
}
)
propose_bounty¶
Propose a new bounty.
The dispatch origin for this call must be Signed.
Payment: TipReportDepositBase will be reserved from the origin account, as well as
DataDepositPerByte for each byte in reason. It will be unreserved upon approval,
or slashed when rejected.
curator: The curator account whom will manage this bounty.fee: The curator fee.value: The total payment amount of this bounty, curator fee included.description: The description of this bounty.
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| description | Vec<u8> |
Python¶
call = substrate.compose_call(
'Bounties', 'propose_bounty', {
'description': 'Bytes',
'value': 'u128',
}
)
propose_curator¶
Assign a curator to a funded bounty.
May only be called from T::SpendOrigin.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| curator | AccountIdLookupOf<T> |
| fee | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'Bounties', 'propose_curator', {
'bounty_id': 'u32',
'curator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'fee': 'u128',
}
)
unassign_curator¶
Unassign curator from a bounty.
This function can only be called by the RejectOrigin a signed origin.
If this function is called by the RejectOrigin, we assume that the curator is
malicious or inactive. As a result, we will slash the curator when possible.
If the origin is the curator, we take this as a sign they are unable to do their job and they willingly give up. We could slash them, but for now we allow them to recover their deposit and exit without issue. (We may want to change this if it is abused.)
Finally, the origin can be anyone if and only if the curator is "inactive". This allows anyone in the community to call out that a curator is not doing their due diligence, and we should pick a new curator. In this case the curator should also be slashed.
# <weight> - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'Bounties', 'unassign_curator', {'bounty_id': 'u32'}
)
Events¶
BountyAwarded¶
A bounty is awarded to a beneficiary.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| beneficiary | T::AccountId |
AccountId |
BountyBecameActive¶
A bounty proposal is funded and became active.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyCanceled¶
A bounty is cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyClaimed¶
A bounty is claimed by beneficiary.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| payout | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
BountyExtended¶
A bounty expiry is extended.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyProposed¶
New bounty proposal.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyRejected¶
A bounty proposal was rejected; funds were slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| bond | BalanceOf<T, I> |
u128 |
Storage functions¶
Bounties¶
Bounties that have been made.
Python¶
result = substrate.query(
'Bounties', 'Bounties', ['u32']
)
Return value¶
{
'bond': 'u128',
'curator_deposit': 'u128',
'fee': 'u128',
'proposer': 'AccountId',
'status': {
'Active': {'curator': 'AccountId', 'update_due': 'u32'},
'Approved': None,
'CuratorProposed': {'curator': 'AccountId'},
'Funded': None,
'PendingPayout': {
'beneficiary': 'AccountId',
'curator': 'AccountId',
'unlock_at': 'u32',
},
'Proposed': None,
},
'value': 'u128',
}
BountyApprovals¶
Bounty indices that have been approved but not yet funded.
Python¶
result = substrate.query(
'Bounties', 'BountyApprovals', []
)
Return value¶
['u32']
BountyCount¶
Number of bounty proposals that have been made.
Python¶
result = substrate.query(
'Bounties', 'BountyCount', []
)
Return value¶
'u32'
BountyDescriptions¶
The description of each bounty.
Python¶
result = substrate.query(
'Bounties', 'BountyDescriptions', ['u32']
)
Return value¶
'Bytes'
Constants¶
BountyDepositBase¶
The amount held on deposit for placing a bounty proposal.
Value¶
33333333300
Python¶
constant = substrate.get_constant('Bounties', 'BountyDepositBase')
BountyDepositPayoutDelay¶
The delay period for which a bounty beneficiary need to wait before claim the payout.
Value¶
57600
Python¶
constant = substrate.get_constant('Bounties', 'BountyDepositPayoutDelay')
BountyUpdatePeriod¶
Bounty duration in blocks.
Value¶
1296000
Python¶
constant = substrate.get_constant('Bounties', 'BountyUpdatePeriod')
BountyValueMinimum¶
Minimum value for a bounty.
Value¶
66666666600
Python¶
constant = substrate.get_constant('Bounties', 'BountyValueMinimum')
CuratorDepositMax¶
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value¶
166666666500
Python¶
constant = substrate.get_constant('Bounties', 'CuratorDepositMax')
CuratorDepositMin¶
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value¶
3333333330
Python¶
constant = substrate.get_constant('Bounties', 'CuratorDepositMin')
CuratorDepositMultiplier¶
The curator deposit is calculated as a percentage of the curator fee.
This deposit has optional upper and lower bounds with CuratorDepositMax and
CuratorDepositMin.
Value¶
500000
Python¶
constant = substrate.get_constant('Bounties', 'CuratorDepositMultiplier')
DataDepositPerByte¶
The amount held on deposit per byte within the tip report reason or bounty description.
Value¶
333333333
Python¶
constant = substrate.get_constant('Bounties', 'DataDepositPerByte')
MaximumReasonLength¶
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
Value¶
16384
Python¶
constant = substrate.get_constant('Bounties', 'MaximumReasonLength')
Errors¶
HasActiveChildBounty¶
The bounty cannot be closed because it has active child bounties.
InsufficientProposersBalance¶
Proposer's balance is too low.
InvalidFee¶
Invalid bounty fee.
InvalidIndex¶
No proposal or bounty at that index.
InvalidValue¶
Invalid bounty value.
PendingPayout¶
A bounty payout is pending. To cancel the bounty, you must unassign and slash the curator.
Premature¶
The bounties cannot be claimed/closed because it's still in the countdown period.
ReasonTooBig¶
The reason given is just too big.
RequireCurator¶
Require bounty curator.
TooManyQueued¶
Too many approvals are already queued.
UnexpectedStatus¶
The bounty status is unexpected.
ChildBounties¶
Calls¶
accept_curator¶
Accept the curator role for the child-bounty.
The dispatch origin for this call must be the curator of this child-bounty.
A deposit will be reserved from the curator and refund upon successful payout or cancellation.
Fee for curator is deducted from curator fee of parent bounty.
Parent bounty must be in active state, for this child-bounty call to work.
Child-bounty must be in "CuratorProposed" state, for processing the call. And state of child-bounty is moved to "Active" on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'ChildBounties', 'accept_curator', {
'child_bounty_id': 'u32',
'parent_bounty_id': 'u32',
}
)
add_child_bounty¶
Add a new child-bounty.
The dispatch origin for this call must be the curator of parent bounty and the parent bounty must be in "active" state.
Child-bounty gets added successfully & fund gets transferred from parent bounty to child-bounty account, if parent bounty has enough funds, else the call fails.
Upper bound to maximum number of active child bounties that can be
added are managed via runtime trait config
[Config::MaxActiveChildBountyCount].
If the call is success, the status of child-bounty is updated to "Added".
parent_bounty_id: Index of parent bounty for which child-bounty is being added.value: Value for executing the proposal.description: Text description for the child-bounty.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| value | BalanceOf<T> |
| description | Vec<u8> |
Python¶
call = substrate.compose_call(
'ChildBounties', 'add_child_bounty', {
'description': 'Bytes',
'parent_bounty_id': 'u32',
'value': 'u128',
}
)
award_child_bounty¶
Award child-bounty to a beneficiary.
The beneficiary will be able to claim the funds after a delay.
The dispatch origin for this call must be the parent curator or curator of this child-bounty.
Parent bounty must be in active state, for this child-bounty call to work.
Child-bounty must be in active state, for processing the call. And state of child-bounty is moved to "PendingPayout" on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.beneficiary: Beneficiary account.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'ChildBounties', 'award_child_bounty', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'child_bounty_id': 'u32',
'parent_bounty_id': 'u32',
}
)
claim_child_bounty¶
Claim the payout from an awarded child-bounty after payout delay.
The dispatch origin for this call may be any signed origin.
Call works independent of parent bounty state, No need for parent bounty to be in active state.
The Beneficiary is paid out with agreed bounty value. Curator fee is paid & curator deposit is unreserved.
Child-bounty must be in "PendingPayout" state, for processing the call. And instance of child-bounty is removed from the state on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'ChildBounties', 'claim_child_bounty', {
'child_bounty_id': 'u32',
'parent_bounty_id': 'u32',
}
)
close_child_bounty¶
Cancel a proposed or active child-bounty. Child-bounty account funds are transferred to parent bounty account. The child-bounty curator deposit may be unreserved if possible.
The dispatch origin for this call must be either parent curator or
T::RejectOrigin.
If the state of child-bounty is Active, curator deposit is
unreserved.
If the state of child-bounty is PendingPayout, call fails &
returns PendingPayout error.
For the origin other than T::RejectOrigin, parent bounty must be in active state, for this child-bounty call to work. For origin T::RejectOrigin execution is forced.
Instance of child-bounty is removed from the state on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'ChildBounties', 'close_child_bounty', {
'child_bounty_id': 'u32',
'parent_bounty_id': 'u32',
}
)
propose_curator¶
Propose curator for funded child-bounty.
The dispatch origin for this call must be curator of parent bounty.
Parent bounty must be in active state, for this child-bounty call to work.
Child-bounty must be in "Added" state, for processing the call. And state of child-bounty is moved to "CuratorProposed" on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.curator: Address of child-bounty curator.fee: payment fee to child-bounty curator for execution.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
| curator | AccountIdLookupOf<T> |
| fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'ChildBounties', 'propose_curator', {
'child_bounty_id': 'u32',
'curator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'fee': 'u128',
'parent_bounty_id': 'u32',
}
)
unassign_curator¶
Unassign curator from a child-bounty.
The dispatch origin for this call can be either RejectOrigin, or
the curator of the parent bounty, or any signed origin.
For the origin other than T::RejectOrigin and the child-bounty curator, parent bounty must be in active state, for this call to work. We allow child-bounty curator and T::RejectOrigin to execute this call irrespective of the parent bounty state.
If this function is called by the RejectOrigin or the
parent bounty curator, we assume that the child-bounty curator is
malicious or inactive. As a result, child-bounty curator deposit is
slashed.
If the origin is the child-bounty curator, we take this as a sign that they are unable to do their job, and are willingly giving up. We could slash the deposit, but for now we allow them to unreserve their deposit and exit without issue. (We may want to change this if it is abused.)
Finally, the origin can be anyone iff the child-bounty curator is "inactive". Expiry update due of parent bounty is used to estimate inactive state of child-bounty curator.
This allows anyone in the community to call out that a child-bounty curator is not doing their due diligence, and we should pick a new one. In this case the child-bounty curator deposit is slashed.
State of child-bounty is moved to Added state on successful call completion.
parent_bounty_id: Index of parent bounty.child_bounty_id: Index of child bounty.
Attributes¶
| Name | Type |
|---|---|
| parent_bounty_id | BountyIndex |
| child_bounty_id | BountyIndex |
Python¶
call = substrate.compose_call(
'ChildBounties', 'unassign_curator', {
'child_bounty_id': 'u32',
'parent_bounty_id': 'u32',
}
)
Events¶
Added¶
A child-bounty is added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| child_index | BountyIndex |
u32 |
Awarded¶
A child-bounty is awarded to a beneficiary.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| child_index | BountyIndex |
u32 |
| beneficiary | T::AccountId |
AccountId |
Canceled¶
A child-bounty is cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| child_index | BountyIndex |
u32 |
Claimed¶
A child-bounty is claimed by beneficiary.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| child_index | BountyIndex |
u32 |
| payout | BalanceOf<T> |
u128 |
| beneficiary | T::AccountId |
AccountId |
Storage functions¶
ChildBounties¶
Child bounties that have been added.
Python¶
result = substrate.query(
'ChildBounties', 'ChildBounties', ['u32', 'u32']
)
Return value¶
{
'curator_deposit': 'u128',
'fee': 'u128',
'parent_bounty': 'u32',
'status': {
'Active': {'curator': 'AccountId'},
'Added': None,
'CuratorProposed': {'curator': 'AccountId'},
'PendingPayout': {
'beneficiary': 'AccountId',
'curator': 'AccountId',
'unlock_at': 'u32',
},
},
'value': 'u128',
}
ChildBountyCount¶
Number of total child bounties.
Python¶
result = substrate.query(
'ChildBounties', 'ChildBountyCount', []
)
Return value¶
'u32'
ChildBountyDescriptions¶
The description of each child-bounty.
Python¶
result = substrate.query(
'ChildBounties', 'ChildBountyDescriptions', ['u32']
)
Return value¶
'Bytes'
ChildrenCuratorFees¶
The cumulative child-bounty curator fee for each parent bounty.
Python¶
result = substrate.query(
'ChildBounties', 'ChildrenCuratorFees', ['u32']
)
Return value¶
'u128'
ParentChildBounties¶
Number of child bounties per parent bounty. Map of parent bounty index to number of child bounties.
Python¶
result = substrate.query(
'ChildBounties', 'ParentChildBounties', ['u32']
)
Return value¶
'u32'
Constants¶
ChildBountyValueMinimum¶
Minimum value for a child-bounty.
Value¶
6666666660
Python¶
constant = substrate.get_constant('ChildBounties', 'ChildBountyValueMinimum')
MaxActiveChildBountyCount¶
Maximum number of child bounties that can be added to a parent bounty.
Value¶
100
Python¶
constant = substrate.get_constant('ChildBounties', 'MaxActiveChildBountyCount')
Errors¶
InsufficientBountyBalance¶
The bounty balance is not enough to add new child-bounty.
ParentBountyNotActive¶
The parent bounty is not in active state.
TooManyChildBounties¶
Number of child bounties exceeds limit MaxActiveChildBountyCount.
Claims¶
Calls¶
attest¶
Attest to a statement, needed to finalize the claims process.
WARNING: Insecure unless your chain includes PrevalidateAttests as a SignedExtension.
Unsigned Validation:
A call to attest is deemed valid if the sender has a Preclaim registered
and provides a statement which is expected for the account.
Parameters:
- statement: The identity of the statement which is being attested to in the signature.
<weight>
The weight of this call is invariant over the input parameters.
Weight includes logic to do pre-validation on attest call.
Total Complexity: O(1) </weight>
Attributes¶
| Name | Type |
|---|---|
| statement | Vec<u8> |
Python¶
call = substrate.compose_call(
'Claims', 'attest', {'statement': 'Bytes'}
)
claim¶
Make a claim to collect your DOTs.
The dispatch origin for this call must be None.
Unsigned Validation: A call to claim is deemed valid if the signature provided matches the expected signed message of:
> Ethereum Signed Message: > (configured prefix string)(address)
and address matches the dest account.
Parameters:
- dest: The destination account to payout the claim.
- ethereum_signature: The signature of an ethereum signed message
matching the format described above.
<weight>
The weight of this call is invariant over the input parameters.
Weight includes logic to validate unsigned claim call.
Total Complexity: O(1) </weight>
Attributes¶
| Name | Type |
|---|---|
| dest | T::AccountId |
| ethereum_signature | EcdsaSignature |
Python¶
call = substrate.compose_call(
'Claims', 'claim', {
'dest': 'AccountId',
'ethereum_signature': '[u8; 65]',
}
)
claim_attest¶
Make a claim to collect your DOTs by signing a statement.
The dispatch origin for this call must be None.
Unsigned Validation:
A call to claim_attest is deemed valid if the signature provided matches
the expected signed message of:
> Ethereum Signed Message: > (configured prefix string)(address)(statement)
and address matches the dest account; the statement must match that which is
expected according to your purchase arrangement.
Parameters:
- dest: The destination account to payout the claim.
- ethereum_signature: The signature of an ethereum signed message
matching the format described above.
- statement: The identity of the statement which is being attested to in the signature.
<weight>
The weight of this call is invariant over the input parameters.
Weight includes logic to validate unsigned claim_attest call.
Total Complexity: O(1) </weight>
Attributes¶
| Name | Type |
|---|---|
| dest | T::AccountId |
| ethereum_signature | EcdsaSignature |
| statement | Vec<u8> |
Python¶
call = substrate.compose_call(
'Claims', 'claim_attest', {
'dest': 'AccountId',
'ethereum_signature': '[u8; 65]',
'statement': 'Bytes',
}
)
mint_claim¶
Mint a new claim to collect DOTs.
The dispatch origin for this call must be Root.
Parameters:
- who: The Ethereum address allowed to collect this claim.
- value: The number of DOTs that will be claimed.
- vesting_schedule: An optional vesting schedule for these DOTs.
<weight> The weight of this call is invariant over the input parameters. We assume worst case that both vesting and statement is being inserted.
Total Complexity: O(1) </weight>
Attributes¶
| Name | Type |
|---|---|
| who | EthereumAddress |
| value | BalanceOf<T> |
| vesting_schedule | Option<(BalanceOf<T>, BalanceOf<T>, T::BlockNumber)> |
| statement | Option<StatementKind> |
Python¶
call = substrate.compose_call(
'Claims', 'mint_claim', {
'statement': (
None,
('Regular', 'Saft'),
),
'value': 'u128',
'vesting_schedule': (
None,
('u128', 'u128', 'u32'),
),
'who': '[u8; 20]',
}
)
move_claim¶
Attributes¶
| Name | Type |
|---|---|
| old | EthereumAddress |
| new | EthereumAddress |
| maybe_preclaim | Option<T::AccountId> |
Python¶
call = substrate.compose_call(
'Claims', 'move_claim', {
'maybe_preclaim': (
None,
'AccountId',
),
'new': '[u8; 20]',
'old': '[u8; 20]',
}
)
Events¶
Claimed¶
Someone claimed some DOTs.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| ethereum_address | EthereumAddress |
[u8; 20] |
| amount | BalanceOf<T> |
u128 |
Storage functions¶
Claims¶
Python¶
result = substrate.query(
'Claims', 'Claims', ['[u8; 20]']
)
Return value¶
'u128'
Preclaims¶
Pre-claimed Ethereum accounts, by the Account ID that they are claimed to.
Python¶
result = substrate.query(
'Claims', 'Preclaims', ['AccountId']
)
Return value¶
'[u8; 20]'
Signing¶
The statement kind that must be signed, if any.
Python¶
result = substrate.query(
'Claims', 'Signing', ['[u8; 20]']
)
Return value¶
('Regular', 'Saft')
Total¶
Python¶
result = substrate.query(
'Claims', 'Total', []
)
Return value¶
'u128'
Vesting¶
Vesting schedule for a claim. First balance is the total amount that should be held for vesting. Second balance is how much should be unlocked per block. The block number is when the vesting should start.
Python¶
result = substrate.query(
'Claims', 'Vesting', ['[u8; 20]']
)
Return value¶
('u128', 'u128', 'u32')
Constants¶
Prefix¶
Value¶
'Pay KSMs to the Kusama account:'
Python¶
constant = substrate.get_constant('Claims', 'Prefix')
Errors¶
InvalidEthereumSignature¶
Invalid Ethereum signature.
InvalidStatement¶
A needed statement was not included.
PotUnderflow¶
There's not enough in the pot to pay out some unvested amount. Generally implies a logic error.
SenderHasNoClaim¶
Account ID sending transaction has no claim.
SignerHasNoClaim¶
Ethereum address has no claim.
VestedBalanceExists¶
The account already has a vested balance.
Configuration¶
Calls¶
set_bypass_consistency_check¶
Setting this to true will disable consistency checks for the configuration setters. Use with caution.
Attributes¶
| Name | Type |
|---|---|
| new | bool |
Python¶
call = substrate.compose_call(
'Configuration', 'set_bypass_consistency_check', {'new': 'bool'}
)
set_chain_availability_period¶
Set the availability period for parachains.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_chain_availability_period', {'new': 'u32'}
)
set_code_retention_period¶
Set the acceptance period for an included candidate.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_code_retention_period', {'new': 'u32'}
)
set_dispute_conclusion_by_time_out_period¶
Set the dispute conclusion by time out period.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_dispute_conclusion_by_time_out_period', {'new': 'u32'}
)
set_dispute_period¶
Set the dispute period, in number of sessions to keep for disputes.
Attributes¶
| Name | Type |
|---|---|
| new | SessionIndex |
Python¶
call = substrate.compose_call(
'Configuration', 'set_dispute_period', {'new': 'u32'}
)
set_dispute_post_conclusion_acceptance_period¶
Set the dispute post conclusion acceptance period.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_dispute_post_conclusion_acceptance_period', {'new': 'u32'}
)
set_group_rotation_frequency¶
Set the parachain validator-group rotation frequency
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_group_rotation_frequency', {'new': 'u32'}
)
set_hrmp_channel_max_capacity¶
Sets the maximum number of messages allowed in an HRMP channel at once.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_channel_max_capacity', {'new': 'u32'}
)
set_hrmp_channel_max_message_size¶
Sets the maximum size of a message that could ever be put into an HRMP channel.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_channel_max_message_size', {'new': 'u32'}
)
set_hrmp_channel_max_total_size¶
Sets the maximum total size of messages in bytes allowed in an HRMP channel at once.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_channel_max_total_size', {'new': 'u32'}
)
set_hrmp_max_message_num_per_candidate¶
Sets the maximum number of outbound HRMP messages can be sent by a candidate.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_max_message_num_per_candidate', {'new': 'u32'}
)
set_hrmp_max_parachain_inbound_channels¶
Sets the maximum number of inbound HRMP channels a parachain is allowed to accept.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_max_parachain_inbound_channels', {'new': 'u32'}
)
set_hrmp_max_parachain_outbound_channels¶
Sets the maximum number of outbound HRMP channels a parachain is allowed to open.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_max_parachain_outbound_channels', {'new': 'u32'}
)
set_hrmp_max_parathread_inbound_channels¶
Sets the maximum number of inbound HRMP channels a parathread is allowed to accept.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_max_parathread_inbound_channels', {'new': 'u32'}
)
set_hrmp_max_parathread_outbound_channels¶
Sets the maximum number of outbound HRMP channels a parathread is allowed to open.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_max_parathread_outbound_channels', {'new': 'u32'}
)
set_hrmp_open_request_ttl¶
Sets the number of sessions after which an HRMP open channel request expires.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_open_request_ttl', {'new': 'u32'}
)
set_hrmp_recipient_deposit¶
Sets the amount of funds that the recipient should provide for accepting opening an HRMP channel.
Attributes¶
| Name | Type |
|---|---|
| new | Balance |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_recipient_deposit', {'new': 'u128'}
)
set_hrmp_sender_deposit¶
Sets the amount of funds that the sender should provide for opening an HRMP channel.
Attributes¶
| Name | Type |
|---|---|
| new | Balance |
Python¶
call = substrate.compose_call(
'Configuration', 'set_hrmp_sender_deposit', {'new': 'u128'}
)
set_max_code_size¶
Set the max validation code size for incoming upgrades.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_code_size', {'new': 'u32'}
)
set_max_downward_message_size¶
Set the critical downward message size.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_downward_message_size', {'new': 'u32'}
)
set_max_head_data_size¶
Set the max head data size for paras.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_head_data_size', {'new': 'u32'}
)
set_max_pov_size¶
Set the max POV block size for incoming upgrades.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_pov_size', {'new': 'u32'}
)
set_max_upward_message_num_per_candidate¶
Sets the maximum number of messages that a candidate can contain.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_upward_message_num_per_candidate', {'new': 'u32'}
)
set_max_upward_message_size¶
Sets the maximum size of an upward message that can be sent by a candidate.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_upward_message_size', {'new': 'u32'}
)
set_max_upward_queue_count¶
Sets the maximum items that can present in a upward dispatch queue at once.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_upward_queue_count', {'new': 'u32'}
)
set_max_upward_queue_size¶
Sets the maximum total size of items that can present in a upward dispatch queue at once.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_upward_queue_size', {'new': 'u32'}
)
set_max_validators¶
Set the maximum number of validators to use in parachain consensus.
Attributes¶
| Name | Type |
|---|---|
| new | Option<u32> |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_validators', {'new': (None, 'u32')}
)
set_max_validators_per_core¶
Set the maximum number of validators to assign to any core.
Attributes¶
| Name | Type |
|---|---|
| new | Option<u32> |
Python¶
call = substrate.compose_call(
'Configuration', 'set_max_validators_per_core', {'new': (None, 'u32')}
)
set_minimum_validation_upgrade_delay¶
Sets the minimum delay between announcing the upgrade block for a parachain until the upgrade taking place.
See the field documentation for information and constraints for the new value.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_minimum_validation_upgrade_delay', {'new': 'u32'}
)
set_n_delay_tranches¶
Set the total number of delay tranches.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_n_delay_tranches', {'new': 'u32'}
)
set_needed_approvals¶
Set the number of validators needed to approve a block.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_needed_approvals', {'new': 'u32'}
)
set_no_show_slots¶
Set the no show slots, in number of number of consensus slots. Must be at least 1.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_no_show_slots', {'new': 'u32'}
)
set_parathread_cores¶
Set the number of parathread execution cores.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_parathread_cores', {'new': 'u32'}
)
set_parathread_retries¶
Set the number of retries for a particular parathread.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_parathread_retries', {'new': 'u32'}
)
set_pvf_checking_enabled¶
Enable or disable PVF pre-checking. Consult the field documentation prior executing.
Attributes¶
| Name | Type |
|---|---|
| new | bool |
Python¶
call = substrate.compose_call(
'Configuration', 'set_pvf_checking_enabled', {'new': 'bool'}
)
set_pvf_voting_ttl¶
Set the number of session changes after which a PVF pre-checking voting is rejected.
Attributes¶
| Name | Type |
|---|---|
| new | SessionIndex |
Python¶
call = substrate.compose_call(
'Configuration', 'set_pvf_voting_ttl', {'new': 'u32'}
)
set_relay_vrf_modulo_samples¶
Set the number of samples to do of the RelayVRFModulo approval assignment criterion.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_relay_vrf_modulo_samples', {'new': 'u32'}
)
set_scheduling_lookahead¶
Set the scheduling lookahead, in expected number of blocks at peak throughput.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_scheduling_lookahead', {'new': 'u32'}
)
set_thread_availability_period¶
Set the availability period for parathreads.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_thread_availability_period', {'new': 'u32'}
)
set_ump_max_individual_weight¶
Sets the maximum amount of weight any individual upward message may consume.
Attributes¶
| Name | Type |
|---|---|
| new | Weight |
Python¶
call = substrate.compose_call(
'Configuration', 'set_ump_max_individual_weight', {
'new': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
set_ump_service_total_weight¶
Sets the soft limit for the phase of dispatching dispatchable upward messages.
Attributes¶
| Name | Type |
|---|---|
| new | Weight |
Python¶
call = substrate.compose_call(
'Configuration', 'set_ump_service_total_weight', {
'new': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
set_validation_upgrade_cooldown¶
Set the validation upgrade cooldown.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_validation_upgrade_cooldown', {'new': 'u32'}
)
set_validation_upgrade_delay¶
Set the validation upgrade delay.
Attributes¶
| Name | Type |
|---|---|
| new | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Configuration', 'set_validation_upgrade_delay', {'new': 'u32'}
)
set_zeroth_delay_tranche_width¶
Set the zeroth delay tranche width.
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Configuration', 'set_zeroth_delay_tranche_width', {'new': 'u32'}
)
Storage functions¶
ActiveConfig¶
The active configuration for the current session.
Python¶
result = substrate.query(
'Configuration', 'ActiveConfig', []
)
Return value¶
{
'chain_availability_period': 'u32',
'code_retention_period': 'u32',
'dispute_conclusion_by_time_out_period': 'u32',
'dispute_period': 'u32',
'dispute_post_conclusion_acceptance_period': 'u32',
'group_rotation_frequency': 'u32',
'hrmp_channel_max_capacity': 'u32',
'hrmp_channel_max_message_size': 'u32',
'hrmp_channel_max_total_size': 'u32',
'hrmp_max_message_num_per_candidate': 'u32',
'hrmp_max_parachain_inbound_channels': 'u32',
'hrmp_max_parachain_outbound_channels': 'u32',
'hrmp_max_parathread_inbound_channels': 'u32',
'hrmp_max_parathread_outbound_channels': 'u32',
'hrmp_recipient_deposit': 'u128',
'hrmp_sender_deposit': 'u128',
'max_code_size': 'u32',
'max_downward_message_size': 'u32',
'max_head_data_size': 'u32',
'max_pov_size': 'u32',
'max_upward_message_num_per_candidate': 'u32',
'max_upward_message_size': 'u32',
'max_upward_queue_count': 'u32',
'max_upward_queue_size': 'u32',
'max_validators': (None, 'u32'),
'max_validators_per_core': (None, 'u32'),
'minimum_validation_upgrade_delay': 'u32',
'n_delay_tranches': 'u32',
'needed_approvals': 'u32',
'no_show_slots': 'u32',
'parathread_cores': 'u32',
'parathread_retries': 'u32',
'pvf_checking_enabled': 'bool',
'pvf_voting_ttl': 'u32',
'relay_vrf_modulo_samples': 'u32',
'scheduling_lookahead': 'u32',
'thread_availability_period': 'u32',
'ump_max_individual_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
'ump_service_total_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
'validation_upgrade_cooldown': 'u32',
'validation_upgrade_delay': 'u32',
'zeroth_delay_tranche_width': 'u32',
}
BypassConsistencyCheck¶
If this is set, then the configuration setters will bypass the consistency checks. This is meant to be used only as the last resort.
Python¶
result = substrate.query(
'Configuration', 'BypassConsistencyCheck', []
)
Return value¶
'bool'
PendingConfigs¶
Pending configuration changes.
This is a list of configuration changes, each with a session index at which it should be applied.
The list is sorted ascending by session index. Also, this list can only contain at most
2 items: for the next session and for the scheduled_session.
Python¶
result = substrate.query(
'Configuration', 'PendingConfigs', []
)
Return value¶
[
(
'u32',
{
'chain_availability_period': 'u32',
'code_retention_period': 'u32',
'dispute_conclusion_by_time_out_period': 'u32',
'dispute_period': 'u32',
'dispute_post_conclusion_acceptance_period': 'u32',
'group_rotation_frequency': 'u32',
'hrmp_channel_max_capacity': 'u32',
'hrmp_channel_max_message_size': 'u32',
'hrmp_channel_max_total_size': 'u32',
'hrmp_max_message_num_per_candidate': 'u32',
'hrmp_max_parachain_inbound_channels': 'u32',
'hrmp_max_parachain_outbound_channels': 'u32',
'hrmp_max_parathread_inbound_channels': 'u32',
'hrmp_max_parathread_outbound_channels': 'u32',
'hrmp_recipient_deposit': 'u128',
'hrmp_sender_deposit': 'u128',
'max_code_size': 'u32',
'max_downward_message_size': 'u32',
'max_head_data_size': 'u32',
'max_pov_size': 'u32',
'max_upward_message_num_per_candidate': 'u32',
'max_upward_message_size': 'u32',
'max_upward_queue_count': 'u32',
'max_upward_queue_size': 'u32',
'max_validators': (None, 'u32'),
'max_validators_per_core': (None, 'u32'),
'minimum_validation_upgrade_delay': 'u32',
'n_delay_tranches': 'u32',
'needed_approvals': 'u32',
'no_show_slots': 'u32',
'parathread_cores': 'u32',
'parathread_retries': 'u32',
'pvf_checking_enabled': 'bool',
'pvf_voting_ttl': 'u32',
'relay_vrf_modulo_samples': 'u32',
'scheduling_lookahead': 'u32',
'thread_availability_period': 'u32',
'ump_max_individual_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'ump_service_total_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'validation_upgrade_cooldown': 'u32',
'validation_upgrade_delay': 'u32',
'zeroth_delay_tranche_width': 'u32',
},
),
]
Errors¶
InvalidNewValue¶
The new value for a configuration parameter is invalid.
ConvictionVoting¶
Calls¶
delegate¶
Delegate the voting power (with some given conviction) of the sending account for a particular class of polls.
The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.
The dispatch origin of this call must be Signed, and the signing account must either:
- be delegating already; or
- have no voting activity (if there is, then it will need to be removed/consolidated
through reap_vote or unvote).
to: The account whose voting thetargetaccount's voting power will follow.class: The class of polls to delegate. To delegate multiple classes, multiple calls to this function are required.conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.
Emits Delegated.
Weight: O(R) where R is the number of polls the voter delegating to has
voted on. Weight is initially charged as if maximum votes, but is refunded later.
Attributes¶
| Name | Type |
|---|---|
| class | ClassOf<T, I> |
| to | AccountIdLookupOf<T> |
| conviction | Conviction |
| balance | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'delegate', {
'balance': 'u128',
'class': 'u16',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'to': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_other_vote¶
Remove a vote for a poll.
If the target is equal to the signer, then this function is exactly equivalent to
remove_vote. If not equal to the signer, then the vote must have expired,
either because the poll was cancelled, because the voter lost the poll or
because the conviction period is over.
The dispatch origin of this call must be Signed.
target: The account of the vote to be removed; this account must have voted for pollindex.index: The index of poll of the vote to be removed.class: The class of the poll.
Weight: O(R + log R) where R is the number of polls that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
| class | ClassOf<T, I> |
| index | PollIndexOf<T, I> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'remove_other_vote', {
'class': 'u16',
'index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_vote¶
Remove a vote for a poll.
If:
- the poll was cancelled, or
- the poll is ongoing, or
- the poll has ended such that
- the vote of the account was in opposition to the result; or
- there was no conviction to the account's vote; or
- the account made a split vote
...then the vote is removed cleanly and a following call to unlock may result in more
funds being available.
If, however, the poll has ended and: - it finished corresponding to the vote of the account, and - the account made a standard vote with conviction, and - the lock period of the conviction is not over ...then the lock will be aggregated into the overall account's lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).
The dispatch origin of this call must be Signed, and the signer must have a vote
registered for poll index.
index: The index of poll of the vote to be removed.class: Optional parameter, if given it indicates the class of the poll. For polls which have finished or are cancelled, this must beSome.
Weight: O(R + log R) where R is the number of polls that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| class | Option<ClassOf<T, I>> |
| index | PollIndexOf<T, I> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'remove_vote', {'class': (None, 'u16'), 'index': 'u32'}
)
undelegate¶
Undelegate the voting power of the sending account for a particular class of polls.
Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued has passed.
The dispatch origin of this call must be Signed and the signing account must be currently delegating.
class: The class of polls to remove the delegation from.
Emits Undelegated.
Weight: O(R) where R is the number of polls the voter delegating to has
voted on. Weight is initially charged as if maximum votes, but is refunded later.
Attributes¶
| Name | Type |
|---|---|
| class | ClassOf<T, I> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'undelegate', {'class': 'u16'}
)
unlock¶
Remove the lock caused by prior voting/delegating which has expired within a particular class.
The dispatch origin of this call must be Signed.
class: The class of polls to unlock.target: The account to remove the lock on.
Weight: O(R) with R number of vote of target.
Attributes¶
| Name | Type |
|---|---|
| class | ClassOf<T, I> |
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'unlock', {
'class': 'u16',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vote¶
Vote in a poll. If vote.is_aye(), the vote is to enact the proposal;
otherwise it is a vote to keep the status quo.
The dispatch origin of this call must be Signed.
poll_index: The index of the poll to vote for.vote: The vote configuration.
Weight: O(R) where R is the number of polls the voter has voted on.
Attributes¶
| Name | Type |
|---|---|
| poll_index | PollIndexOf<T, I> |
| vote | AccountVote<BalanceOf<T, I>> |
Python¶
call = substrate.compose_call(
'ConvictionVoting', 'vote', {
'poll_index': 'u32',
'vote': {
'Split': {
'aye': 'u128',
'nay': 'u128',
},
'SplitAbstain': {
'abstain': 'u128',
'aye': 'u128',
'nay': 'u128',
},
'Standard': {
'balance': 'u128',
'vote': {
'aye': 'bool',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
},
},
},
}
)
Events¶
Delegated¶
An account has delegated their vote to another account. [who, target]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | T::AccountId |
AccountId |
Undelegated¶
An [account] has cancelled a previous delegation operation.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
Storage functions¶
ClassLocksFor¶
The voting classes which have a non-zero lock requirement and the lock amounts which they require. The actual amount locked on behalf of this pallet should always be the maximum of this list.
Python¶
result = substrate.query(
'ConvictionVoting', 'ClassLocksFor', ['AccountId']
)
Return value¶
[('u16', 'u128')]
VotingFor¶
All voting for a particular voter in a particular voting class. We store the balance for the number of votes that we have recorded.
Python¶
result = substrate.query(
'ConvictionVoting', 'VotingFor', ['AccountId', 'u16']
)
Return value¶
{
'Casting': {
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'votes': [
(
'u32',
{
'Split': 'InnerStruct',
'SplitAbstain': 'InnerStruct',
'Standard': 'InnerStruct',
},
),
],
},
'Delegating': {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'target': 'AccountId',
},
}
Constants¶
MaxVotes¶
The maximum number of concurrent votes an account may have.
Also used to compute weight, an overly large value can lead to extrinsics with large
weight estimation: see delegate for instance.
Value¶
512
Python¶
constant = substrate.get_constant('ConvictionVoting', 'MaxVotes')
VoteLockingPeriod¶
The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
Value¶
100800
Python¶
constant = substrate.get_constant('ConvictionVoting', 'VoteLockingPeriod')
Errors¶
AlreadyDelegating¶
The account is already delegating.
AlreadyVoting¶
The account currently has votes attached to it and the operation cannot succeed until
these are removed, either through unvote or reap_vote.
BadClass¶
The class ID supplied is invalid.
ClassNeeded¶
The class must be supplied since it is not easily determinable from the state.
InsufficientFunds¶
Too high a balance was provided that the account cannot afford.
MaxVotesReached¶
Maximum number of votes reached.
NoPermission¶
The actor has no permission to conduct the action.
NoPermissionYet¶
The actor has no permission to conduct the action right now but will do in the future.
Nonsense¶
Delegation to oneself makes no sense.
NotDelegating¶
The account is not currently delegating.
NotOngoing¶
Poll is not ongoing.
NotVoter¶
The given account did not vote on the poll.
Council¶
Calls¶
close¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'Council', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'Council', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal¶
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python¶
call = substrate.compose_call(
'Council', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute¶
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'Council', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose¶
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'Council', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members¶
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes¶
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python¶
call = substrate.compose_call(
'Council', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote¶
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python¶
call = substrate.compose_call(
'Council', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events¶
Approved¶
A motion was approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed¶
A proposal was closed because its threshold was reached or after its duration was up.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved¶
A motion was not approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed¶
A motion was executed; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted¶
A single member did some action; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed¶
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted¶
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions¶
Members¶
The current members of the collective. This is stored sorted (just by value).
Python¶
result = substrate.query(
'Council', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The prime member that helps determine the default vote behavior in case of absentations.
Python¶
result = substrate.query(
'Council', 'Prime', []
)
Return value¶
'AccountId'
ProposalCount¶
Proposals so far.
Python¶
result = substrate.query(
'Council', 'ProposalCount', []
)
Return value¶
'u32'
ProposalOf¶
Actual proposal for a given hash, if it's current.
Python¶
result = substrate.query(
'Council', 'ProposalOf', ['[u8; 32]']
)
Return value¶
'Call'
Proposals¶
The hashes of the active proposals.
Python¶
result = substrate.query(
'Council', 'Proposals', []
)
Return value¶
['[u8; 32]']
Voting¶
Votes on a given proposal, if it is ongoing.
Python¶
result = substrate.query(
'Council', 'Voting', ['[u8; 32]']
)
Return value¶
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors¶
AlreadyInitialized¶
Members are already initialized!
DuplicateProposal¶
Duplicate proposals not allowed
DuplicateVote¶
Duplicate vote ignored
NotMember¶
Account is not a member
ProposalMissing¶
Proposal must exist
TooEarly¶
The close call was made too early, before the end of the voting.
TooManyProposals¶
There can only be a maximum of MaxProposals active proposals.
WrongIndex¶
Mismatched index
WrongProposalLength¶
The given length bound for the proposal was too low.
WrongProposalWeight¶
The given weight bound for the proposal was too low.
Crowdloan¶
Calls¶
add_memo¶
Add an optional memo to an existing crowdloan contribution.
Origin must be Signed, and the user must have contributed to the crowdloan.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
| memo | Vec<u8> |
Python¶
call = substrate.compose_call(
'Crowdloan', 'add_memo', {'index': 'u32', 'memo': 'Bytes'}
)
contribute¶
Contribute to a crowd sale. This will transfer some balance over to fund a parachain slot. It will be withdrawable when the crowdloan has ended and the funds are unused.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
| value | BalanceOf<T> |
| signature | Option<MultiSignature> |
Python¶
call = substrate.compose_call(
'Crowdloan', 'contribute', {
'index': 'u32',
'signature': (
None,
{
'Ecdsa': '[u8; 65]',
'Ed25519': '[u8; 64]',
'Sr25519': '[u8; 64]',
},
),
'value': 'u128',
}
)
contribute_all¶
Contribute your entire balance to a crowd sale. This will transfer the entire balance of a user over to fund a parachain slot. It will be withdrawable when the crowdloan has ended and the funds are unused.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
| signature | Option<MultiSignature> |
Python¶
call = substrate.compose_call(
'Crowdloan', 'contribute_all', {
'index': 'u32',
'signature': (
None,
{
'Ecdsa': '[u8; 65]',
'Ed25519': '[u8; 64]',
'Sr25519': '[u8; 64]',
},
),
}
)
create¶
Create a new crowdloaning campaign for a parachain slot with the given lease period range.
This applies a lock to your parachain configuration, ensuring that it cannot be changed by the parachain manager.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
| cap | BalanceOf<T> |
| first_period | LeasePeriodOf<T> |
| last_period | LeasePeriodOf<T> |
| end | T::BlockNumber |
| verifier | Option<MultiSigner> |
Python¶
call = substrate.compose_call(
'Crowdloan', 'create', {
'cap': 'u128',
'end': 'u32',
'first_period': 'u32',
'index': 'u32',
'last_period': 'u32',
'verifier': (
None,
{
'Ecdsa': '[u8; 33]',
'Ed25519': '[u8; 32]',
'Sr25519': '[u8; 32]',
},
),
}
)
dissolve¶
Remove a fund after the retirement period has ended and all funds have been returned.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloan', 'dissolve', {'index': 'u32'}
)
edit¶
Edit the configuration for an in-progress crowdloan.
Can only be called by Root origin.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
| cap | BalanceOf<T> |
| first_period | LeasePeriodOf<T> |
| last_period | LeasePeriodOf<T> |
| end | T::BlockNumber |
| verifier | Option<MultiSigner> |
Python¶
call = substrate.compose_call(
'Crowdloan', 'edit', {
'cap': 'u128',
'end': 'u32',
'first_period': 'u32',
'index': 'u32',
'last_period': 'u32',
'verifier': (
None,
{
'Ecdsa': '[u8; 33]',
'Ed25519': '[u8; 32]',
'Sr25519': '[u8; 32]',
},
),
}
)
poke¶
Poke the fund into NewRaise
Origin must be Signed, and the fund has non-zero raise.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloan', 'poke', {'index': 'u32'}
)
refund¶
Automatically refund contributors of an ended crowdloan.
Due to weight restrictions, this function may need to be called multiple
times to fully refund all users. We will refund RemoveKeysLimit users at a time.
Origin must be signed, but can come from anyone.
Attributes¶
| Name | Type |
|---|---|
| index | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloan', 'refund', {'index': 'u32'}
)
withdraw¶
Withdraw full balance of a specific contributor.
Origin must be signed, but can come from anyone.
The fund must be either in, or ready for, retirement. For a fund to be in retirement, then the retirement
flag must be set. For a fund to be ready for retirement, then:
- it must not already be in retirement;
- the amount of raised funds must be bigger than the free balance of the account;
- and either:
- the block number must be at least end; or
- the current lease period must be greater than the fund's last_period.
In this case, the fund's retirement flag is set and its end is reset to the current block
number.
who: The account whose contribution should be withdrawn.index: The parachain to whose crowdloan the contribution was made.
Attributes¶
| Name | Type |
|---|---|
| who | T::AccountId |
| index | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloan', 'withdraw', {'index': 'u32', 'who': 'AccountId'}
)
Events¶
AddedToNewRaise¶
A parachain has been moved to NewRaise
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
AllRefunded¶
All loans in a fund have been refunded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
Contributed¶
Contributed to a crowd sale.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| fund_index | ParaId |
u32 |
| amount | BalanceOf<T> |
u128 |
Created¶
Create a new crowdloaning campaign.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
Dissolved¶
Fund is dissolved.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
Edited¶
The configuration to a crowdloan has been edited.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
HandleBidResult¶
The result of trying to submit a new bid to the Slots pallet.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemoUpdated¶
A memo has been updated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| para_id | ParaId |
u32 |
| memo | Vec<u8> |
Bytes |
PartiallyRefunded¶
The loans in a fund have been partially dissolved, i.e. there are some left over child keys that still need to be killed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
Withdrew¶
Withdrew full balance of a contributor.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| fund_index | ParaId |
u32 |
| amount | BalanceOf<T> |
u128 |
Storage functions¶
EndingsCount¶
The number of auctions that have entered into their ending period so far.
Python¶
result = substrate.query(
'Crowdloan', 'EndingsCount', []
)
Return value¶
'u32'
Funds¶
Info on all of the funds.
Python¶
result = substrate.query(
'Crowdloan', 'Funds', ['u32']
)
Return value¶
{
'cap': 'u128',
'deposit': 'u128',
'depositor': 'AccountId',
'end': 'u32',
'first_period': 'u32',
'fund_index': 'u32',
'last_contribution': {'Ending': 'u32', 'Never': None, 'PreEnding': 'u32'},
'last_period': 'u32',
'raised': 'u128',
'verifier': (
None,
{'Ecdsa': '[u8; 33]', 'Ed25519': '[u8; 32]', 'Sr25519': '[u8; 32]'},
),
}
NewRaise¶
The funds that have had additional contributions during the last block. This is used in order to determine which funds should submit new or updated bids.
Python¶
result = substrate.query(
'Crowdloan', 'NewRaise', []
)
Return value¶
['u32']
NextFundIndex¶
Tracker for the next available fund index
Python¶
result = substrate.query(
'Crowdloan', 'NextFundIndex', []
)
Return value¶
'u32'
Constants¶
MinContribution¶
The minimum amount that may be contributed into a crowdloan. Should almost certainly be at
least ExistentialDeposit.
Value¶
999999999000
Python¶
constant = substrate.get_constant('Crowdloan', 'MinContribution')
PalletId¶
PalletId for the crowdloan pallet. An appropriate value could be PalletId(*b"py/cfund")
Value¶
'0x70792f6366756e64'
Python¶
constant = substrate.get_constant('Crowdloan', 'PalletId')
RemoveKeysLimit¶
Max number of storage keys to remove per extrinsic call.
Value¶
1000
Python¶
constant = substrate.get_constant('Crowdloan', 'RemoveKeysLimit')
Errors¶
AlreadyInNewRaise¶
The fund is already in NewRaise
BidOrLeaseActive¶
This parachain's bid or lease is still active and withdraw cannot yet begin.
CannotEndInPast¶
The campaign ends before the current block number. The end must be in the future.
CapExceeded¶
Contributions exceed maximum amount.
ContributionPeriodOver¶
The contribution period has already ended.
ContributionTooSmall¶
The contribution was below the minimum, MinContribution.
EndTooFarInFuture¶
The end date for this crowdloan is not sensible.
FirstPeriodInPast¶
The current lease period is more than the first lease period.
FirstPeriodTooFarInFuture¶
The first lease period needs to at least be less than 3 max_value.
FundNotEnded¶
The crowdloan has not yet ended.
InvalidOrigin¶
The origin of this call is invalid.
InvalidParaId¶
Invalid fund index.
InvalidSignature¶
Invalid signature.
LastPeriodBeforeFirstPeriod¶
Last lease period must be greater than first lease period.
LastPeriodTooFarInFuture¶
The last lease period cannot be more than 3 periods after the first period.
LeaseActive¶
This parachain lease is still active and retirement cannot yet begin.
MemoTooLarge¶
The provided memo is too large.
NoContributions¶
There are no contributions stored in this crowdloan.
NoLeasePeriod¶
A lease period has not started yet, due to an offset in the starting block.
NotParachain¶
This crowdloan does not correspond to a parachain.
NotReadyToDissolve¶
The crowdloan is not ready to dissolve. Potentially still has a slot or in retirement period.
Overflow¶
There was an overflow.
VrfDelayInProgress¶
No contributions allowed during the VRF delay
Democracy¶
Calls¶
blacklist¶
Permanently place a proposal into the blacklist. This prevents it from ever being proposed again.
If called on a queued public or external proposal, then this will result in it being
removed. If the ref_index supplied is an active referendum with the proposal hash,
then it will be cancelled.
The dispatch origin of this call must be BlacklistOrigin.
proposal_hash: The proposal hash to blacklist permanently.ref_index: An ongoing referendum whose hash isproposal_hash, which will be cancelled.
Weight: O(p) (though as this is an high-privilege dispatch, we assume it has a
reasonable value).
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
| maybe_ref_index | Option<ReferendumIndex> |
Python¶
call = substrate.compose_call(
'Democracy', 'blacklist', {
'maybe_ref_index': (None, 'u32'),
'proposal_hash': '[u8; 32]',
}
)
cancel_proposal¶
Remove a proposal.
The dispatch origin of this call must be CancelProposalOrigin.
prop_index: The index of the proposal to cancel.
Weight: O(p) where p = PublicProps::<T>::decode_len()
Attributes¶
| Name | Type |
|---|---|
| prop_index | PropIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'cancel_proposal', {'prop_index': 'u32'}
)
cancel_referendum¶
Remove a referendum.
The dispatch origin of this call must be Root.
ref_index: The index of the referendum to cancel.
# Weight: O(1).
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'cancel_referendum', {'ref_index': 'u32'}
)
clear_public_proposals¶
Clears all public proposals.
The dispatch origin of this call must be Root.
Weight: O(1).
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Democracy', 'clear_public_proposals', {}
)
delegate¶
Delegate the voting power (with some given conviction) of the sending account.
The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.
The dispatch origin of this call must be Signed, and the signing account must either:
- be delegating already; or
- have no voting activity (if there is, then it will need to be removed/consolidated
through reap_vote or unvote).
to: The account whose voting thetargetaccount's voting power will follow.conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.
Emits Delegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes¶
| Name | Type |
|---|---|
| to | AccountIdLookupOf<T> |
| conviction | Conviction |
| balance | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'delegate', {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'to': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
emergency_cancel¶
Schedule an emergency cancellation of a referendum. Cannot happen twice to the same referendum.
The dispatch origin of this call must be CancellationOrigin.
-ref_index: The index of the referendum to cancel.
Weight: O(1).
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'emergency_cancel', {'ref_index': 'u32'}
)
external_propose¶
Schedule a referendum to be tabled once it is legal to schedule an external referendum.
The dispatch origin of this call must be ExternalOrigin.
proposal_hash: The preimage hash of the proposal.
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_default¶
Schedule a negative-turnout-bias referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalDefaultOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose_default', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_majority¶
Schedule a majority-carries referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalMajorityOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose_majority', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
fast_track¶
Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.
The dispatch of this call must be FastTrackOrigin.
proposal_hash: The hash of the current external proposal.voting_period: The period that is allowed for voting on this proposal. Increased to Must be always greater than zero. ForFastTrackOriginmust be equal or greater thanFastTrackVotingPeriod.delay: The number of block after voting has ended in approval and this should be enacted. This doesn't have a minimum amount.
Emits Started.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
| voting_period | T::BlockNumber |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Democracy', 'fast_track', {
'delay': 'u32',
'proposal_hash': '[u8; 32]',
'voting_period': 'u32',
}
)
propose¶
Propose a sensitive action to be taken.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit.
proposal_hash: The hash of the proposal preimage.value: The amount of deposit (must be at leastMinimumDeposit).
Emits Proposed.
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
| value | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
'value': 'u128',
}
)
remove_other_vote¶
Remove a vote for a referendum.
If the target is equal to the signer, then this function is exactly equivalent to
remove_vote. If not equal to the signer, then the vote must have expired,
either because the referendum was cancelled, because the voter lost the referendum or
because the conviction period is over.
The dispatch origin of this call must be Signed.
target: The account of the vote to be removed; this account must have voted for referendumindex.index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'remove_other_vote', {
'index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_vote¶
Remove a vote for a referendum.
If:
- the referendum was cancelled, or
- the referendum is ongoing, or
- the referendum has ended such that
- the vote of the account was in opposition to the result; or
- there was no conviction to the account's vote; or
- the account made a split vote
...then the vote is removed cleanly and a following call to unlock may result in more
funds being available.
If, however, the referendum has ended and: - it finished corresponding to the vote of the account, and - the account made a standard vote with conviction, and - the lock period of the conviction is not over ...then the lock will be aggregated into the overall account's lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).
The dispatch origin of this call must be Signed, and the signer must have a vote
registered for referendum index.
index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'remove_vote', {'index': 'u32'}
)
second¶
Signals agreement with a particular proposal.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit, equal to the original deposit.
proposal: The index of the proposal to second.
Attributes¶
| Name | Type |
|---|---|
| proposal | PropIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'second', {'proposal': 'u32'}
)
undelegate¶
Undelegate the voting power of the sending account.
Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued.
The dispatch origin of this call must be Signed and the signing account must be currently delegating.
Emits Undelegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Democracy', 'undelegate', {}
)
unlock¶
Unlock tokens that have an expired lock.
The dispatch origin of this call must be Signed.
target: The account to remove the lock on.
Weight: O(R) with R number of vote of target.
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'unlock', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
veto_external¶
Veto and blacklist the external proposal hash.
The dispatch origin of this call must be VetoOrigin.
proposal_hash: The preimage hash of the proposal to veto and blacklist.
Emits Vetoed.
Weight: O(V + log(V)) where V is number of existing vetoers
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
Python¶
call = substrate.compose_call(
'Democracy', 'veto_external', {'proposal_hash': '[u8; 32]'}
)
vote¶
Vote in a referendum. If vote.is_aye(), the vote is to enact the proposal;
otherwise it is a vote to keep the status quo.
The dispatch origin of this call must be Signed.
ref_index: The index of the referendum to vote for.vote: The vote configuration.
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
| vote | AccountVote<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Democracy', 'vote', {
'ref_index': 'u32',
'vote': {
'Split': {
'aye': 'u128',
'nay': 'u128',
},
'Standard': {
'balance': 'u128',
'vote': {
'aye': 'bool',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
},
},
},
}
)
Events¶
Blacklisted¶
A proposal_hash has been blacklisted permanently.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | H256 |
[u8; 32] |
Cancelled¶
A referendum has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Delegated¶
An account has delegated their vote to another account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| target | T::AccountId |
AccountId |
ExternalTabled¶
An external proposal has been tabled.
Attributes¶
No attributes
NotPassed¶
A proposal has been rejected by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Passed¶
A proposal has been approved by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
ProposalCanceled¶
A proposal got canceled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| prop_index | PropIndex |
u32 |
Proposed¶
A motion has been proposed by a public account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Seconded¶
An account has secconded a proposal
Attributes¶
| Name | Type | Composition |
|---|---|---|
| seconder | T::AccountId |
AccountId |
| prop_index | PropIndex |
u32 |
Started¶
A referendum has begun.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
| threshold | VoteThreshold |
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority') |
Tabled¶
A public proposal has been tabled for referendum vote.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Undelegated¶
An account has cancelled a previous delegation operation.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Vetoed¶
An external proposal has been vetoed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| proposal_hash | H256 |
[u8; 32] |
| until | T::BlockNumber |
u32 |
Voted¶
An account has voted in a referendum
Attributes¶
| Name | Type | Composition |
|---|---|---|
| voter | T::AccountId |
AccountId |
| ref_index | ReferendumIndex |
u32 |
| vote | AccountVote<BalanceOf<T>> |
{'Standard': {'vote': {'aye': 'bool', 'conviction': ('None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x')}, 'balance': 'u128'}, 'Split': {'aye': 'u128', 'nay': 'u128'}} |
Storage functions¶
Blacklist¶
A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.
Python¶
result = substrate.query(
'Democracy', 'Blacklist', ['[u8; 32]']
)
Return value¶
('u32', ['AccountId'])
Cancellations¶
Record of all proposals that have been subject to emergency cancellation.
Python¶
result = substrate.query(
'Democracy', 'Cancellations', ['[u8; 32]']
)
Return value¶
'bool'
DepositOf¶
Those who have locked a deposit.
TWOX-NOTE: Safe, as increasing integer keys are safe.
Python¶
result = substrate.query(
'Democracy', 'DepositOf', ['u32']
)
Return value¶
(['AccountId'], 'u128')
LastTabledWasExternal¶
True if the last referendum tabled was submitted externally. False if it was a public proposal.
Python¶
result = substrate.query(
'Democracy', 'LastTabledWasExternal', []
)
Return value¶
'bool'
LowestUnbaked¶
The lowest referendum index representing an unbaked referendum. Equal to
ReferendumCount if there isn't a unbaked referendum.
Python¶
result = substrate.query(
'Democracy', 'LowestUnbaked', []
)
Return value¶
'u32'
NextExternal¶
The referendum to be tabled whenever it would be valid to table an external proposal.
This happens when a referendum needs to be tabled and one of two conditions are met:
- LastTabledWasExternal is false; or
- PublicProps is empty.
Python¶
result = substrate.query(
'Democracy', 'NextExternal', []
)
Return value¶
(
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'),
)
PublicPropCount¶
The number of (public) proposals that have been made so far.
Python¶
result = substrate.query(
'Democracy', 'PublicPropCount', []
)
Return value¶
'u32'
PublicProps¶
The public proposals. Unsorted. The second item is the proposal.
Python¶
result = substrate.query(
'Democracy', 'PublicProps', []
)
Return value¶
[
(
'u32',
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'AccountId',
),
]
ReferendumCount¶
The next free referendum index, aka the number of referenda started so far.
Python¶
result = substrate.query(
'Democracy', 'ReferendumCount', []
)
Return value¶
'u32'
ReferendumInfoOf¶
Information concerning any given referendum.
TWOX-NOTE: SAFE as indexes are not under an attacker’s control.
Python¶
result = substrate.query(
'Democracy', 'ReferendumInfoOf', ['u32']
)
Return value¶
{
'Finished': {'approved': 'bool', 'end': 'u32'},
'Ongoing': {
'delay': 'u32',
'end': 'u32',
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'tally': {'ayes': 'u128', 'nays': 'u128', 'turnout': 'u128'},
'threshold': (
'SuperMajorityApprove',
'SuperMajorityAgainst',
'SimpleMajority',
),
},
}
VotingOf¶
All votes for a particular voter. We store the balance for the number of votes that we have recorded. The second item is the total amount of delegations, that will be added.
TWOX-NOTE: SAFE as AccountIds are crypto hashes anyway.
Python¶
result = substrate.query(
'Democracy', 'VotingOf', ['AccountId']
)
Return value¶
{
'Delegating': {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'target': 'AccountId',
},
'Direct': {
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'votes': [('u32', {'Split': 'InnerStruct', 'Standard': 'InnerStruct'})],
},
}
Constants¶
CooloffPeriod¶
Period in blocks where an external proposal may not be re-submitted after being vetoed.
Value¶
100800
Python¶
constant = substrate.get_constant('Democracy', 'CooloffPeriod')
EnactmentPeriod¶
The period between a proposal being approved and enacted.
It should generally be a little more than the unstake period to ensure that voting stakers have an opportunity to remove themselves from the system in the case where they are on the losing side of a vote.
Value¶
115200
Python¶
constant = substrate.get_constant('Democracy', 'EnactmentPeriod')
FastTrackVotingPeriod¶
Minimum voting period allowed for a fast-track referendum.
Value¶
1800
Python¶
constant = substrate.get_constant('Democracy', 'FastTrackVotingPeriod')
InstantAllowed¶
Indicator for whether an emergency origin is even allowed to happen. Some chains may
want to set this permanently to false, others may want to condition it on things such
as an upgrade having happened recently.
Value¶
True
Python¶
constant = substrate.get_constant('Democracy', 'InstantAllowed')
LaunchPeriod¶
How often (in blocks) new public referenda are launched.
Value¶
100800
Python¶
constant = substrate.get_constant('Democracy', 'LaunchPeriod')
MaxBlacklisted¶
The maximum number of items which can be blacklisted.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxBlacklisted')
MaxDeposits¶
The maximum number of deposits a public proposal may have at any time.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxDeposits')
MaxProposals¶
The maximum number of public proposals that can exist at any time.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxProposals')
MaxVotes¶
The maximum number of votes for an account.
Also used to compute weight, an overly big value can
lead to extrinsic with very big weight: see delegate for instance.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxVotes')
MinimumDeposit¶
The minimum amount to be used as a deposit for a public referendum proposal.
Value¶
33333333300
Python¶
constant = substrate.get_constant('Democracy', 'MinimumDeposit')
VoteLockingPeriod¶
The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
Value¶
115200
Python¶
constant = substrate.get_constant('Democracy', 'VoteLockingPeriod')
VotingPeriod¶
How often (in blocks) to check for new votes.
Value¶
100800
Python¶
constant = substrate.get_constant('Democracy', 'VotingPeriod')
Errors¶
AlreadyCanceled¶
Cannot cancel the same proposal twice
AlreadyDelegating¶
The account is already delegating.
AlreadyVetoed¶
Identity may not veto a proposal twice
DuplicateProposal¶
Proposal already made
InstantNotAllowed¶
The instant referendum origin is currently disallowed.
InsufficientFunds¶
Too high a balance was provided that the account cannot afford.
InvalidHash¶
Invalid hash
MaxVotesReached¶
Maximum number of votes reached.
NoPermission¶
The actor has no permission to conduct the action.
NoProposal¶
No external proposal
NoneWaiting¶
No proposals waiting
Nonsense¶
Delegation to oneself makes no sense.
NotDelegating¶
The account is not currently delegating.
NotSimpleMajority¶
Next external proposal not simple majority
NotVoter¶
The given account did not vote on the referendum.
ProposalBlacklisted¶
Proposal still blacklisted
ProposalMissing¶
Proposal does not exist
ReferendumInvalid¶
Vote given for invalid referendum
TooMany¶
Maximum number of items reached.
ValueLow¶
Value too low
VotesExist¶
The account currently has votes attached to it and the operation cannot succeed until
these are removed, either through unvote or reap_vote.
VotingPeriodLow¶
Voting period too low
WrongUpperBound¶
Invalid upper bound.
Dmp¶
Storage functions¶
DownwardMessageQueueHeads¶
A mapping that stores the downward message queue MQC head for each para.
Each link in this chain has a form:
(prev_head, B, H(M)), where
- prev_head: is the previous head hash or zero if none.
- B: is the relay-chain block number in which a message was appended.
- H(M): is the hash of the message being appended.
Python¶
result = substrate.query(
'Dmp', 'DownwardMessageQueueHeads', ['u32']
)
Return value¶
'[u8; 32]'
DownwardMessageQueues¶
The downward messages addressed for a certain para.
Python¶
result = substrate.query(
'Dmp', 'DownwardMessageQueues', ['u32']
)
Return value¶
[{'msg': 'Bytes', 'sent_at': 'u32'}]
ElectionProviderMultiPhase¶
Calls¶
governance_fallback¶
Trigger the governance fallback.
This can only be called when [Phase::Emergency] is enabled, as an alternative to
calling [Call::set_emergency_election_result].
Attributes¶
| Name | Type |
|---|---|
| maybe_max_voters | Option<u32> |
| maybe_max_targets | Option<u32> |
Python¶
call = substrate.compose_call(
'ElectionProviderMultiPhase', 'governance_fallback', {
'maybe_max_targets': (None, 'u32'),
'maybe_max_voters': (None, 'u32'),
}
)
set_emergency_election_result¶
Set a solution in the queue, to be handed out to the client of this pallet in the next
call to ElectionProvider::elect.
This can only be set by T::ForceOrigin, and only when the phase is Emergency.
The solution is not checked for any feasibility and is assumed to be trustworthy, as any feasibility check itself can in principle cause the election process to fail (due to memory/weight constrains).
Attributes¶
| Name | Type |
|---|---|
| supports | Supports<T::AccountId> |
Python¶
call = substrate.compose_call(
'ElectionProviderMultiPhase', 'set_emergency_election_result', {
'supports': [
(
'AccountId',
{
'total': 'u128',
'voters': [
(
'AccountId',
'u128',
),
],
},
),
],
}
)
set_minimum_untrusted_score¶
Set a new value for MinimumUntrustedScore.
Dispatch origin must be aligned with T::ForceOrigin.
This check can be turned off by setting the value to None.
Attributes¶
| Name | Type |
|---|---|
| maybe_next_score | Option<ElectionScore> |
Python¶
call = substrate.compose_call(
'ElectionProviderMultiPhase', 'set_minimum_untrusted_score', {
'maybe_next_score': (
None,
{
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
),
}
)
submit¶
Submit a solution for the signed phase.
The dispatch origin fo this call must be signed.
The solution is potentially queued, based on the claimed score and processed at the end of the signed phase.
A deposit is reserved and recorded for the solution. Based on the outcome, the solution might be rewarded, slashed, or get all or a part of the deposit back.
Attributes¶
| Name | Type |
|---|---|
| raw_solution | Box<RawSolution<SolutionOf<T::MinerConfig>>> |
Python¶
call = substrate.compose_call(
'ElectionProviderMultiPhase', 'submit', {
'raw_solution': {
'round': 'u32',
'score': {
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
'solution': {
'votes1': [('u32', 'u16')],
'votes10': [
(
'u32',
"[('u16', 'u16'); 9]",
'u16',
),
],
'votes11': [
(
'u32',
"[('u16', 'u16'); 10]",
'u16',
),
],
'votes12': [
(
'u32',
"[('u16', 'u16'); 11]",
'u16',
),
],
'votes13': [
(
'u32',
"[('u16', 'u16'); 12]",
'u16',
),
],
'votes14': [
(
'u32',
"[('u16', 'u16'); 13]",
'u16',
),
],
'votes15': [
(
'u32',
"[('u16', 'u16'); 14]",
'u16',
),
],
'votes16': [
(
'u32',
"[('u16', 'u16'); 15]",
'u16',
),
],
'votes17': [
(
'u32',
"[('u16', 'u16'); 16]",
'u16',
),
],
'votes18': [
(
'u32',
"[('u16', 'u16'); 17]",
'u16',
),
],
'votes19': [
(
'u32',
"[('u16', 'u16'); 18]",
'u16',
),
],
'votes2': [
('u32', ('u16', 'u16'), 'u16'),
],
'votes20': [
(
'u32',
"[('u16', 'u16'); 19]",
'u16',
),
],
'votes21': [
(
'u32',
"[('u16', 'u16'); 20]",
'u16',
),
],
'votes22': [
(
'u32',
"[('u16', 'u16'); 21]",
'u16',
),
],
'votes23': [
(
'u32',
"[('u16', 'u16'); 22]",
'u16',
),
],
'votes24': [
(
'u32',
"[('u16', 'u16'); 23]",
'u16',
),
],
'votes3': [
(
'u32',
"[('u16', 'u16'); 2]",
'u16',
),
],
'votes4': [
(
'u32',
"[('u16', 'u16'); 3]",
'u16',
),
],
'votes5': [
(
'u32',
"[('u16', 'u16'); 4]",
'u16',
),
],
'votes6': [
(
'u32',
"[('u16', 'u16'); 5]",
'u16',
),
],
'votes7': [
(
'u32',
"[('u16', 'u16'); 6]",
'u16',
),
],
'votes8': [
(
'u32',
"[('u16', 'u16'); 7]",
'u16',
),
],
'votes9': [
(
'u32',
"[('u16', 'u16'); 8]",
'u16',
),
],
},
},
}
)
submit_unsigned¶
Submit a solution for the unsigned phase.
The dispatch origin fo this call must be none.
This submission is checked on the fly. Moreover, this unsigned solution is only validated when submitted to the pool from the local node. Effectively, this means that only active validators can submit this transaction when authoring a block (similar to an inherent).
To prevent any incorrect solution (and thus wasted time/weight), this transaction will panic if the solution submitted by the validator is invalid in any way, effectively putting their authoring reward at risk.
No deposit or reward is associated with this submission.
Attributes¶
| Name | Type |
|---|---|
| raw_solution | Box<RawSolution<SolutionOf<T::MinerConfig>>> |
| witness | SolutionOrSnapshotSize |
Python¶
call = substrate.compose_call(
'ElectionProviderMultiPhase', 'submit_unsigned', {
'raw_solution': {
'round': 'u32',
'score': {
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
'solution': {
'votes1': [('u32', 'u16')],
'votes10': [
(
'u32',
"[('u16', 'u16'); 9]",
'u16',
),
],
'votes11': [
(
'u32',
"[('u16', 'u16'); 10]",
'u16',
),
],
'votes12': [
(
'u32',
"[('u16', 'u16'); 11]",
'u16',
),
],
'votes13': [
(
'u32',
"[('u16', 'u16'); 12]",
'u16',
),
],
'votes14': [
(
'u32',
"[('u16', 'u16'); 13]",
'u16',
),
],
'votes15': [
(
'u32',
"[('u16', 'u16'); 14]",
'u16',
),
],
'votes16': [
(
'u32',
"[('u16', 'u16'); 15]",
'u16',
),
],
'votes17': [
(
'u32',
"[('u16', 'u16'); 16]",
'u16',
),
],
'votes18': [
(
'u32',
"[('u16', 'u16'); 17]",
'u16',
),
],
'votes19': [
(
'u32',
"[('u16', 'u16'); 18]",
'u16',
),
],
'votes2': [
('u32', ('u16', 'u16'), 'u16'),
],
'votes20': [
(
'u32',
"[('u16', 'u16'); 19]",
'u16',
),
],
'votes21': [
(
'u32',
"[('u16', 'u16'); 20]",
'u16',
),
],
'votes22': [
(
'u32',
"[('u16', 'u16'); 21]",
'u16',
),
],
'votes23': [
(
'u32',
"[('u16', 'u16'); 22]",
'u16',
),
],
'votes24': [
(
'u32',
"[('u16', 'u16'); 23]",
'u16',
),
],
'votes3': [
(
'u32',
"[('u16', 'u16'); 2]",
'u16',
),
],
'votes4': [
(
'u32',
"[('u16', 'u16'); 3]",
'u16',
),
],
'votes5': [
(
'u32',
"[('u16', 'u16'); 4]",
'u16',
),
],
'votes6': [
(
'u32',
"[('u16', 'u16'); 5]",
'u16',
),
],
'votes7': [
(
'u32',
"[('u16', 'u16'); 6]",
'u16',
),
],
'votes8': [
(
'u32',
"[('u16', 'u16'); 7]",
'u16',
),
],
'votes9': [
(
'u32',
"[('u16', 'u16'); 8]",
'u16',
),
],
},
},
'witness': {
'targets': 'u32',
'voters': 'u32',
},
}
)
Events¶
ElectionFailed¶
An election failed.
Not much can be said about which computes failed in the process.
Attributes¶
No attributes
ElectionFinalized¶
The election has been finalized, with the given computation and score.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| compute | ElectionCompute |
('OnChain', 'Signed', 'Unsigned', 'Fallback', 'Emergency') |
| score | ElectionScore |
{'minimal_stake': 'u128', 'sum_stake': 'u128', 'sum_stake_squared': 'u128'} |
PhaseTransitioned¶
There was a phase transition in a given round.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | Phase<T::BlockNumber> |
{'Off': None, 'Signed': None, 'Unsigned': ('bool', 'u32'), 'Emergency': None} |
| to | Phase<T::BlockNumber> |
{'Off': None, 'Signed': None, 'Unsigned': ('bool', 'u32'), 'Emergency': None} |
| round | u32 |
u32 |
Rewarded¶
An account has been rewarded for their signed submission being finalized.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | <T as frame_system::Config>::AccountId |
AccountId |
| value | BalanceOf<T> |
u128 |
Slashed¶
An account has been slashed for submitting an invalid signed submission.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | <T as frame_system::Config>::AccountId |
AccountId |
| value | BalanceOf<T> |
u128 |
SolutionStored¶
A solution was stored with the given compute.
The origin indicates the origin of the solution. If origin is Some(AccountId),
the stored solution was submited in the signed phase by a miner with the AccountId.
Otherwise, the solution was stored either during the unsigned phase or by
T::ForceOrigin. The bool is true when a previous solution was ejected to make
room for this one.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| compute | ElectionCompute |
('OnChain', 'Signed', 'Unsigned', 'Fallback', 'Emergency') |
| origin | Option<T::AccountId> |
(None, 'AccountId') |
| prev_ejected | bool |
bool |
Storage functions¶
CurrentPhase¶
Current phase.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'CurrentPhase', []
)
Return value¶
{'Emergency': None, 'Off': None, 'Signed': None, 'Unsigned': ('bool', 'u32')}
DesiredTargets¶
Desired number of targets to elect for this round.
Only exists when [Snapshot] is present.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'DesiredTargets', []
)
Return value¶
'u32'
MinimumUntrustedScore¶
The minimum score that each 'untrusted' solution must attain in order to be considered feasible.
Can be set via set_minimum_untrusted_score.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'MinimumUntrustedScore', []
)
Return value¶
{'minimal_stake': 'u128', 'sum_stake': 'u128', 'sum_stake_squared': 'u128'}
QueuedSolution¶
Current best solution, signed or unsigned, queued to be returned upon elect.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'QueuedSolution', []
)
Return value¶
{
'compute': ('OnChain', 'Signed', 'Unsigned', 'Fallback', 'Emergency'),
'score': {
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
'supports': [
('AccountId', {'total': 'u128', 'voters': [('AccountId', 'u128')]}),
],
}
Round¶
Internal counter for the number of rounds.
This is useful for de-duplication of transactions submitted to the pool, and general diagnostics of the pallet.
This is merely incremented once per every time that an upstream elect is called.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'Round', []
)
Return value¶
'u32'
SignedSubmissionIndices¶
A sorted, bounded vector of (score, block_number, index), where each index points to a
value in SignedSubmissions.
We never need to process more than a single signed submission at a time. Signed submissions can be quite large, so we're willing to pay the cost of multiple database accesses to access them one at a time instead of reading and decoding all of them at once.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'SignedSubmissionIndices', []
)
Return value¶
[
(
{
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
'u32',
'u32',
),
]
SignedSubmissionNextIndex¶
The next index to be assigned to an incoming signed submission.
Every accepted submission is assigned a unique index; that index is bound to that particular submission for the duration of the election. On election finalization, the next index is reset to 0.
We can't just use SignedSubmissionIndices.len(), because that's a bounded set; past its
capacity, it will simply saturate. We can't just iterate over SignedSubmissionsMap,
because iteration is slow. Instead, we store the value here.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'SignedSubmissionNextIndex', []
)
Return value¶
'u32'
SignedSubmissionsMap¶
Unchecked, signed solutions.
Together with SubmissionIndices, this stores a bounded set of SignedSubmissions while
allowing us to keep only a single one in memory at a time.
Twox note: the key of the map is an auto-incrementing index which users cannot inspect or affect; we shouldn't need a cryptographically secure hasher.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'SignedSubmissionsMap', ['u32']
)
Return value¶
{
'call_fee': 'u128',
'deposit': 'u128',
'raw_solution': {
'round': 'u32',
'score': {
'minimal_stake': 'u128',
'sum_stake': 'u128',
'sum_stake_squared': 'u128',
},
'solution': {
'votes1': [('u32', 'u16')],
'votes10': [('u32', "[('u16', 'u16'); 9]", 'u16')],
'votes11': [('u32', "[('u16', 'u16'); 10]", 'u16')],
'votes12': [('u32', "[('u16', 'u16'); 11]", 'u16')],
'votes13': [('u32', "[('u16', 'u16'); 12]", 'u16')],
'votes14': [('u32', "[('u16', 'u16'); 13]", 'u16')],
'votes15': [('u32', "[('u16', 'u16'); 14]", 'u16')],
'votes16': [('u32', "[('u16', 'u16'); 15]", 'u16')],
'votes17': [('u32', "[('u16', 'u16'); 16]", 'u16')],
'votes18': [('u32', "[('u16', 'u16'); 17]", 'u16')],
'votes19': [('u32', "[('u16', 'u16'); 18]", 'u16')],
'votes2': [('u32', ('u16', 'u16'), 'u16')],
'votes20': [('u32', "[('u16', 'u16'); 19]", 'u16')],
'votes21': [('u32', "[('u16', 'u16'); 20]", 'u16')],
'votes22': [('u32', "[('u16', 'u16'); 21]", 'u16')],
'votes23': [('u32', "[('u16', 'u16'); 22]", 'u16')],
'votes24': [('u32', "[('u16', 'u16'); 23]", 'u16')],
'votes3': [('u32', "[('u16', 'u16'); 2]", 'u16')],
'votes4': [('u32', "[('u16', 'u16'); 3]", 'u16')],
'votes5': [('u32', "[('u16', 'u16'); 4]", 'u16')],
'votes6': [('u32', "[('u16', 'u16'); 5]", 'u16')],
'votes7': [('u32', "[('u16', 'u16'); 6]", 'u16')],
'votes8': [('u32', "[('u16', 'u16'); 7]", 'u16')],
'votes9': [('u32', "[('u16', 'u16'); 8]", 'u16')],
},
},
'who': 'AccountId',
}
Snapshot¶
Snapshot data of the round.
This is created at the beginning of the signed phase and cleared upon calling elect.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'Snapshot', []
)
Return value¶
{'targets': ['AccountId'], 'voters': [('AccountId', 'u64', ['AccountId'])]}
SnapshotMetadata¶
The metadata of the [RoundSnapshot]
Only exists when [Snapshot] is present.
Python¶
result = substrate.query(
'ElectionProviderMultiPhase', 'SnapshotMetadata', []
)
Return value¶
{'targets': 'u32', 'voters': 'u32'}
Constants¶
BetterSignedThreshold¶
The minimum amount of improvement to the solution score that defines a solution as "better" in the Signed phase.
Value¶
0
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'BetterSignedThreshold')
BetterUnsignedThreshold¶
The minimum amount of improvement to the solution score that defines a solution as "better" in the Unsigned phase.
Value¶
500000
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'BetterUnsignedThreshold')
MaxElectableTargets¶
The maximum number of electable targets to put in the snapshot.
Value¶
65535
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MaxElectableTargets')
MaxElectingVoters¶
The maximum number of electing voters to put in the snapshot. At the moment, snapshots are only over a single block, but once multi-block elections are introduced they will take place over multiple blocks.
Value¶
12500
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MaxElectingVoters')
MaxWinners¶
The maximum number of winners that can be elected by this ElectionProvider
implementation.
Note: This must always be greater or equal to T::DataProvider::desired_targets().
Value¶
2000
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MaxWinners')
MinerMaxLength¶
Value¶
3538944
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MinerMaxLength')
MinerMaxVotesPerVoter¶
Value¶
24
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MinerMaxVotesPerVoter')
MinerMaxWeight¶
Value¶
{'proof_size': 13650590614545068195, 'ref_time': 1470882648000}
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MinerMaxWeight')
MinerTxPriority¶
The priority of the unsigned transaction submitted in the unsigned-phase
Value¶
16602069666338596453
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'MinerTxPriority')
OffchainRepeat¶
The repeat threshold of the offchain worker.
For example, if it is 5, that means that at least 5 blocks will elapse between attempts to submit the worker's solution.
Value¶
18
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'OffchainRepeat')
SignedDepositBase¶
Base deposit for a signed solution.
Value¶
1333333332000
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedDepositBase')
SignedDepositByte¶
Per-byte deposit for a signed solution.
Value¶
325520
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedDepositByte')
SignedDepositWeight¶
Per-weight deposit for a signed solution.
Value¶
0
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedDepositWeight')
SignedMaxRefunds¶
The maximum amount of unchecked solutions to refund the call fee for.
Value¶
4
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedMaxRefunds')
SignedMaxSubmissions¶
Maximum number of signed submissions that can be queued.
It is best to avoid adjusting this during an election, as it impacts downstream data
structures. In particular, SignedSubmissionIndices<T> is bounded on this value. If you
update this value during an election, you must ensure that
SignedSubmissionIndices.len() is less than or equal to the new value. Otherwise,
attempts to submit new solutions may cause a runtime panic.
Value¶
16
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedMaxSubmissions')
SignedMaxWeight¶
Maximum weight of a signed solution.
If [Config::MinerConfig] is being implemented to submit signed solutions (outside of
this pallet), then [MinerConfig::solution_weight] is used to compare against
this value.
Value¶
{'proof_size': 13650590614545068195, 'ref_time': 1470882648000}
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedMaxWeight')
SignedPhase¶
Duration of the signed phase.
Value¶
150
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedPhase')
SignedRewardBase¶
Base reward for a signed solution
Value¶
100000000000
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'SignedRewardBase')
UnsignedPhase¶
Duration of the unsigned phase.
Value¶
150
Python¶
constant = substrate.get_constant('ElectionProviderMultiPhase', 'UnsignedPhase')
Errors¶
BoundNotMet¶
Some bound not met
CallNotAllowed¶
The call is not allowed at this point.
FallbackFailed¶
The fallback failed
InvalidSubmissionIndex¶
Self::insert_submission returned an invalid index.
MissingSnapshotMetadata¶
Snapshot metadata should exist but didn't.
OcwCallWrongEra¶
OCW submitted solution for wrong round
PreDispatchEarlySubmission¶
Submission was too early.
PreDispatchWeakSubmission¶
Submission was too weak, score-wise.
PreDispatchWrongWinnerCount¶
Wrong number of winners presented.
SignedCannotPayDeposit¶
The origin failed to pay the deposit.
SignedInvalidWitness¶
Witness data to dispatchable is invalid.
SignedQueueFull¶
The queue was full, and the solution was not better than any of the existing ones.
SignedTooMuchWeight¶
The signed submission consumes too much weight
TooManyWinners¶
Submitted solution has too many winners
FastUnstake¶
Calls¶
control¶
Control the operation of this pallet.
Dispatch origin must be signed by the [Config::ControlOrigin].
Attributes¶
| Name | Type |
|---|---|
| unchecked_eras_to_check | EraIndex |
Python¶
call = substrate.compose_call(
'FastUnstake', 'control', {'unchecked_eras_to_check': 'u32'}
)
deregister¶
Deregister oneself from the fast-unstake.
This is useful if one is registered, they are still waiting, and they change their mind.
Note that the associated stash is still fully unbonded and chilled as a consequence of
calling register_fast_unstake. This should probably be followed by a call to
Staking::rebond.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'FastUnstake', 'deregister', {}
)
register_fast_unstake¶
Register oneself for fast-unstake.
The dispatch origin of this call must be signed by the controller account, similar to
staking::unbond.
The stash associated with the origin must have no ongoing unlocking chunks. If successful, this will fully unbond and chill the stash. Then, it will enqueue the stash to be checked in further blocks.
If by the time this is called, the stash is actually eligible for fast-unstake, then they are guaranteed to remain eligible, because the call will chill them as well.
If the check works, the entire staking data is removed, i.e. the stash is fully unstaked.
If the check fails, the stash remains chilled and waiting for being unbonded as in with the normal staking system, but they lose part of their unbonding chunks due to consuming the chain's resources.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'FastUnstake', 'register_fast_unstake', {}
)
Events¶
BatchChecked¶
A batch was partially checked for the given eras, but the process did not finish.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| eras | Vec<EraIndex> |
['u32'] |
BatchFinished¶
A batch was terminated.
This is always follows by a number of Unstaked or Slashed events, marking the end
of the batch. A new batch will be created upon next block.
Attributes¶
No attributes
InternalError¶
An internal error happened. Operations will be paused now.
Attributes¶
No attributes
Slashed¶
A staker was slashed for requesting fast-unstake whilst being exposed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Unstaked¶
A staker was unstaked.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Storage functions¶
CounterForQueue¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'FastUnstake', 'CounterForQueue', []
)
Return value¶
'u32'
ErasToCheckPerBlock¶
Number of eras to check per block.
If set to 0, this pallet does absolutely nothing.
Based on the amount of weight available at on_idle, up to this many eras of a single
nominator might be checked.
Python¶
result = substrate.query(
'FastUnstake', 'ErasToCheckPerBlock', []
)
Return value¶
'u32'
Head¶
The current "head of the queue" being unstaked.
Python¶
result = substrate.query(
'FastUnstake', 'Head', []
)
Return value¶
{'checked': ['u32'], 'stashes': [('AccountId', 'u128')]}
Queue¶
The map of all accounts wishing to be unstaked.
Keeps track of AccountId wishing to unstake and it's corresponding deposit.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'FastUnstake', 'Queue', ['AccountId']
)
Return value¶
'u128'
Constants¶
Deposit¶
Deposit to take for unstaking, to make sure we're able to slash the it in order to cover the costs of resources on unsuccessful unstake.
Value¶
33333333300
Python¶
constant = substrate.get_constant('FastUnstake', 'Deposit')
Errors¶
AlreadyHead¶
The provided un-staker is already in Head, and cannot deregister.
AlreadyQueued¶
The bonded account has already been queued.
CallNotAllowed¶
The call is not allowed at this point because the pallet is not active.
NotController¶
The provided Controller account was not found.
This means that the given account is not bonded.
NotFullyBonded¶
The bonded account has active unlocking chunks.
NotQueued¶
The provided un-staker is not in the Queue.
FellowshipCollective¶
Calls¶
add_member¶
Introduce a new member.
origin: Must be theAdminOrigin.who: Account of non-member which will become a member.rank: The rank to give the new member.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
cleanup_poll¶
Remove votes from the given poll. It must have ended.
origin: Must beSignedby any account.poll_index: Index of a poll which is completed and for which votes continue to exist.max: Maximum number of vote items from remove in this call.
Transaction fees are waived if the operation is successful.
Weight O(max) (less if there are fewer items to remove than max).
Attributes¶
| Name | Type |
|---|---|
| poll_index | PollIndexOf<T, I> |
| max | u32 |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'cleanup_poll', {'max': 'u32', 'poll_index': 'u32'}
)
demote_member¶
Decrement the rank of an existing member by one. If the member is already at rank zero, then they are removed entirely.
origin: Must be theAdminOrigin.who: Account of existing member of rank greater than zero.
Weight: O(1), less if the member's index is highest in its rank.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'demote_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
promote_member¶
Increment the rank of an existing member by one.
origin: Must be theAdminOrigin.who: Account of existing member.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'promote_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_member¶
Remove the member entirely.
origin: Must be theAdminOrigin.who: Account of existing member of rank greater than zero.min_rank: The rank of the member or greater.
Weight: O(min_rank).
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| min_rank | Rank |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'remove_member', {
'min_rank': 'u16',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vote¶
Add an aye or nay vote for the sender to the given proposal.
origin: Must beSignedby a member account.poll: Index of a poll which is ongoing.aye:trueif the vote is to approve the proposal,falseotherwise.
Transaction fees are be waived if the member is voting on any particular proposal for the first time and the call is successful. Subsequent vote changes will charge a fee.
Weight: O(1), less if there was no previous vote on the poll by the member.
Attributes¶
| Name | Type |
|---|---|
| poll | PollIndexOf<T, I> |
| aye | bool |
Python¶
call = substrate.compose_call(
'FellowshipCollective', 'vote', {'aye': 'bool', 'poll': 'u32'}
)
Events¶
MemberAdded¶
A member who has been added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
MemberRemoved¶
The member who of given rank has been removed from the collective.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| rank | Rank |
u16 |
RankChanged¶
The member whose rank has been changed to the given rank.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| rank | Rank |
u16 |
Voted¶
The member who has voted for the poll with the given vote leading to an updated
tally.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| poll | PollIndexOf<T, I> |
u32 |
| vote | VoteRecord |
{'Aye': 'u32', 'Nay': 'u32'} |
| tally | TallyOf<T, I> |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
Storage functions¶
IdToIndex¶
The index of each ranks's member into the group of members who have at least that rank.
Python¶
result = substrate.query(
'FellowshipCollective', 'IdToIndex', ['u16', 'AccountId']
)
Return value¶
'u32'
IndexToId¶
The members in the collective by index. All indices in the range 0..MemberCount will
return Some, however a member's index is not guaranteed to remain unchanged over time.
Python¶
result = substrate.query(
'FellowshipCollective', 'IndexToId', ['u16', 'u32']
)
Return value¶
'AccountId'
MemberCount¶
The number of members in the collective who have at least the rank according to the index of the vec.
Python¶
result = substrate.query(
'FellowshipCollective', 'MemberCount', ['u16']
)
Return value¶
'u32'
Members¶
The current members of the collective.
Python¶
result = substrate.query(
'FellowshipCollective', 'Members', ['AccountId']
)
Return value¶
{'rank': 'u16'}
Voting¶
Votes on a given proposal, if it is ongoing.
Python¶
result = substrate.query(
'FellowshipCollective', 'Voting', ['u32', 'AccountId']
)
Return value¶
{'Aye': 'u32', 'Nay': 'u32'}
VotingCleanup¶
Python¶
result = substrate.query(
'FellowshipCollective', 'VotingCleanup', ['u32']
)
Return value¶
'Bytes'
Errors¶
AlreadyMember¶
Account is already a member.
Corruption¶
Unexpected error in state.
InvalidWitness¶
The information provided is incorrect.
NoPermission¶
The origin is not sufficiently privileged to do the operation.
NoneRemaining¶
There are no further records to be removed.
NotMember¶
Account is not a member.
NotPolling¶
The given poll index is unknown or has closed.
Ongoing¶
The given poll is still ongoing.
RankTooLow¶
The member's rank is too low to vote.
FellowshipReferenda¶
Calls¶
cancel¶
Cancel an ongoing referendum.
origin: must be theCancelOrigin.index: The index of the referendum to be cancelled.
Emits Cancelled.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'cancel', {'index': 'u32'}
)
kill¶
Cancel an ongoing referendum and slash the deposits.
origin: must be theKillOrigin.index: The index of the referendum to be cancelled.
Emits Killed and DepositSlashed.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'kill', {'index': 'u32'}
)
nudge_referendum¶
Advance a referendum onto its next logical state. Only used internally.
origin: must beRoot.index: the referendum to be advanced.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'nudge_referendum', {'index': 'u32'}
)
one_fewer_deciding¶
Advance a track onto its next logical state. Only used internally.
origin: must beRoot.track: the track to be advanced.
Action item for when there is now one fewer referendum in the deciding phase and the
DecidingCount is not yet updated. This means that we should either:
- begin deciding another referendum (and leave DecidingCount alone); or
- decrement DecidingCount.
Attributes¶
| Name | Type |
|---|---|
| track | TrackIdOf<T, I> |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'one_fewer_deciding', {'track': 'u16'}
)
place_decision_deposit¶
Post the Decision Deposit for a referendum.
origin: must beSignedand the account must have funds available for the referendum's track's Decision Deposit.index: The index of the submitted referendum whose Decision Deposit is yet to be posted.
Emits DecisionDepositPlaced.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'place_decision_deposit', {'index': 'u32'}
)
refund_decision_deposit¶
Refund the Decision Deposit for a closed referendum back to the depositor.
origin: must beSignedorRoot.index: The index of a closed referendum whose Decision Deposit has not yet been refunded.
Emits DecisionDepositRefunded.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'refund_decision_deposit', {'index': 'u32'}
)
refund_submission_deposit¶
Refund the Submission Deposit for a closed referendum back to the depositor.
origin: must beSignedorRoot.index: The index of a closed referendum whose Submission Deposit has not yet been refunded.
Emits SubmissionDepositRefunded.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'refund_submission_deposit', {'index': 'u32'}
)
submit¶
Propose a referendum on a privileged action.
origin: must beSubmitOriginand the account must haveSubmissionDepositfunds available.proposal_origin: The origin from which the proposal should be executed.proposal: The proposal.enactment_moment: The moment that the proposal should be enacted.
Emits Submitted.
Attributes¶
| Name | Type |
|---|---|
| proposal_origin | Box<PalletsOriginOf<T>> |
| proposal | BoundedCallOf<T, I> |
| enactment_moment | DispatchTime<T::BlockNumber> |
Python¶
call = substrate.compose_call(
'FellowshipReferenda', 'submit', {
'enactment_moment': {
'After': 'u32',
'At': 'u32',
},
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
'proposal_origin': {
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {
'Parachain': 'u32',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'XcmPallet': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
None: None,
},
}
)
Events¶
Approved¶
A referendum has been approved and its proposal has been scheduled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
Cancelled¶
A referendum has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
ConfirmAborted¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
ConfirmStarted¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
Confirmed¶
A referendum has ended its confirmation phase and is ready for approval.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
DecisionDepositPlaced¶
The decision deposit has been placed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
DecisionDepositRefunded¶
The decision deposit has been refunded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
DecisionStarted¶
A referendum has moved into the deciding phase.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| track | TrackIdOf<T, I> |
u16 |
| proposal | BoundedCallOf<T, I> |
{'Legacy': {'hash': '[u8; 32]'}, 'Inline': 'Bytes', 'Lookup': {'hash': '[u8; 32]', 'len': 'u32'}} |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
DepositSlashed¶
A deposit has been slashaed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
Killed¶
A referendum has been killed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
Rejected¶
A proposal has been rejected by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
SubmissionDepositRefunded¶
The submission deposit has been refunded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
Submitted¶
A referendum has been submitted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| track | TrackIdOf<T, I> |
u16 |
| proposal | BoundedCallOf<T, I> |
{'Legacy': {'hash': '[u8; 32]'}, 'Inline': 'Bytes', 'Lookup': {'hash': '[u8; 32]', 'len': 'u32'}} |
TimedOut¶
A referendum has been timed out without being decided.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'bare_ayes': 'u32', 'ayes': 'u32', 'nays': 'u32'} |
Storage functions¶
DecidingCount¶
The number of referenda being decided currently.
Python¶
result = substrate.query(
'FellowshipReferenda', 'DecidingCount', ['u16']
)
Return value¶
'u32'
ReferendumCount¶
The next free referendum index, aka the number of referenda started so far.
Python¶
result = substrate.query(
'FellowshipReferenda', 'ReferendumCount', []
)
Return value¶
'u32'
ReferendumInfoFor¶
Information concerning any given referendum.
Python¶
result = substrate.query(
'FellowshipReferenda', 'ReferendumInfoFor', ['u32']
)
Return value¶
{
'Approved': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'Cancelled': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'Killed': 'u32',
'Ongoing': {
'alarm': (None, ('u32', ('u32', 'u32'))),
'deciding': (None, {'confirming': (None, 'u32'), 'since': 'u32'}),
'decision_deposit': (None, {'amount': 'u128', 'who': 'AccountId'}),
'enactment': {'After': 'u32', 'At': 'u32'},
'in_queue': 'bool',
'origin': {
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {'Parachain': 'u32'},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
None: None,
'XcmPallet': {
'Response': {'interior': 'scale_info::159', 'parents': 'u8'},
'Xcm': {'interior': 'scale_info::159', 'parents': 'u8'},
},
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
},
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'submission_deposit': {'amount': 'u128', 'who': 'AccountId'},
'submitted': 'u32',
'tally': {'ayes': 'u32', 'bare_ayes': 'u32', 'nays': 'u32'},
'track': 'u16',
},
'Rejected': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'TimedOut': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
}
TrackQueue¶
The sorted list of referenda ready to be decided but not yet being decided, ordered by conviction-weighted approvals.
This should be empty if DecidingCount is less than TrackInfo::max_deciding.
Python¶
result = substrate.query(
'FellowshipReferenda', 'TrackQueue', ['u16']
)
Return value¶
[('u32', 'u32')]
Constants¶
AlarmInterval¶
Quantization level for the referendum wakeup scheduler. A higher number will result in fewer storage reads/writes needed for smaller voters, but also result in delays to the automatic referendum status changes. Explicit servicing instructions are unaffected.
Value¶
1
Python¶
constant = substrate.get_constant('FellowshipReferenda', 'AlarmInterval')
MaxQueued¶
Maximum size of the referendum queue for a single track.
Value¶
100
Python¶
constant = substrate.get_constant('FellowshipReferenda', 'MaxQueued')
SubmissionDeposit¶
The minimum amount to be used as a deposit for a public referendum proposal.
Value¶
0
Python¶
constant = substrate.get_constant('FellowshipReferenda', 'SubmissionDeposit')
Tracks¶
Information concerning the different referendum tracks.
Value¶
[
(
0,
{
'confirm_period': 300,
'decision_deposit': 3333333333300,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'candidates',
'prepare_period': 300,
},
),
(
1,
{
'confirm_period': 300,
'decision_deposit': 333333333330,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'members',
'prepare_period': 300,
},
),
(
2,
{
'confirm_period': 300,
'decision_deposit': 333333333330,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'proficients',
'prepare_period': 300,
},
),
(
3,
{
'confirm_period': 300,
'decision_deposit': 333333333330,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'fellows',
'prepare_period': 300,
},
),
(
4,
{
'confirm_period': 300,
'decision_deposit': 333333333330,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'senior fellows',
'prepare_period': 300,
},
),
(
5,
{
'confirm_period': 300,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'experts',
'prepare_period': 300,
},
),
(
6,
{
'confirm_period': 300,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'senior experts',
'prepare_period': 300,
},
),
(
7,
{
'confirm_period': 300,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'masters',
'prepare_period': 300,
},
),
(
8,
{
'confirm_period': 300,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'senior masters',
'prepare_period': 300,
},
),
(
9,
{
'confirm_period': 300,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 10,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'grand masters',
'prepare_period': 300,
},
),
]
Python¶
constant = substrate.get_constant('FellowshipReferenda', 'Tracks')
UndecidingTimeout¶
The number of blocks after submission that a referendum must begin being decided by. Once this passes, then anyone may cancel the referendum.
Value¶
100800
Python¶
constant = substrate.get_constant('FellowshipReferenda', 'UndecidingTimeout')
Errors¶
BadReferendum¶
The referendum index provided is invalid in this context.
BadStatus¶
The referendum status is invalid for this operation.
BadTrack¶
The track identifier given was invalid.
Full¶
There are already a full complement of referenda in progress for this track.
HasDeposit¶
Referendum's decision deposit is already paid.
NoDeposit¶
The deposit cannot be refunded since none was made.
NoPermission¶
The deposit refunder is not the depositor.
NoTrack¶
No track exists for the proposal origin.
NotOngoing¶
Referendum is not ongoing.
NothingToDo¶
There was nothing to do in the advancement.
QueueEmpty¶
The queue of the track is empty.
Unfinished¶
Any deposit cannot be refunded until after the decision is over.
Grandpa¶
Calls¶
note_stalled¶
Note that the current authority set of the GRANDPA finality gadget has stalled.
This will trigger a forced authority set change at the beginning of the next session, to
be enacted delay blocks after that. The delay should be high enough to safely assume
that the block signalling the forced change will not be re-orged e.g. 1000 blocks.
The block production rate (which may be slowed down because of finality lagging) should
be taken into account when choosing the delay. The GRANDPA voters based on the new
authority will start voting on top of best_finalized_block_number for new finalized
blocks. best_finalized_block_number should be the highest of the latest finalized
block of all validators of the new authority set.
Only callable by root.
Attributes¶
| Name | Type |
|---|---|
| delay | T::BlockNumber |
| best_finalized_block_number | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Grandpa', 'note_stalled', {
'best_finalized_block_number': 'u32',
'delay': 'u32',
}
)
report_equivocation¶
Report voter equivocation/misbehavior. This method will verify the equivocation proof and validate the given key ownership proof against the extracted offender. If both are valid, the offence will be reported.
Attributes¶
| Name | Type |
|---|---|
| equivocation_proof | Box<EquivocationProof<T::Hash, T::BlockNumber>> |
| key_owner_proof | T::KeyOwnerProof |
Python¶
call = substrate.compose_call(
'Grandpa', 'report_equivocation', {
'equivocation_proof': {
'equivocation': {
'Precommit': {
'first': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
'identity': '[u8; 32]',
'round_number': 'u64',
'second': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
},
'Prevote': {
'first': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
'identity': '[u8; 32]',
'round_number': 'u64',
'second': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
},
},
'set_id': 'u64',
},
'key_owner_proof': {
'session': 'u32',
'trie_nodes': ['Bytes'],
'validator_count': 'u32',
},
}
)
report_equivocation_unsigned¶
Report voter equivocation/misbehavior. This method will verify the equivocation proof and validate the given key ownership proof against the extracted offender. If both are valid, the offence will be reported.
This extrinsic must be called unsigned and it is expected that only
block authors will call it (validated in ValidateUnsigned), as such
if the block author is defined it will be defined as the equivocation
reporter.
Attributes¶
| Name | Type |
|---|---|
| equivocation_proof | Box<EquivocationProof<T::Hash, T::BlockNumber>> |
| key_owner_proof | T::KeyOwnerProof |
Python¶
call = substrate.compose_call(
'Grandpa', 'report_equivocation_unsigned', {
'equivocation_proof': {
'equivocation': {
'Precommit': {
'first': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
'identity': '[u8; 32]',
'round_number': 'u64',
'second': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
},
'Prevote': {
'first': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
'identity': '[u8; 32]',
'round_number': 'u64',
'second': (
{
'target_hash': '[u8; 32]',
'target_number': 'u32',
},
'[u8; 64]',
),
},
},
'set_id': 'u64',
},
'key_owner_proof': {
'session': 'u32',
'trie_nodes': ['Bytes'],
'validator_count': 'u32',
},
}
)
Events¶
NewAuthorities¶
New authority set has been applied.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| authority_set | AuthorityList |
[('[u8; 32]', 'u64')] |
Paused¶
Current authority set has been paused.
Attributes¶
No attributes
Resumed¶
Current authority set has been resumed.
Attributes¶
No attributes
Storage functions¶
CurrentSetId¶
The number of changes (both in terms of keys and underlying economic responsibilities) in the "set" of Grandpa validators from genesis.
Python¶
result = substrate.query(
'Grandpa', 'CurrentSetId', []
)
Return value¶
'u64'
NextForced¶
next block number where we can force a change.
Python¶
result = substrate.query(
'Grandpa', 'NextForced', []
)
Return value¶
'u32'
PendingChange¶
Pending change: (signaled at, scheduled change).
Python¶
result = substrate.query(
'Grandpa', 'PendingChange', []
)
Return value¶
{
'delay': 'u32',
'forced': (None, 'u32'),
'next_authorities': [('[u8; 32]', 'u64')],
'scheduled_at': 'u32',
}
SetIdSession¶
A mapping from grandpa set ID to the index of the most recent session for which its members were responsible.
TWOX-NOTE: SetId is not under user control.
Python¶
result = substrate.query(
'Grandpa', 'SetIdSession', ['u64']
)
Return value¶
'u32'
Stalled¶
true if we are currently stalled.
Python¶
result = substrate.query(
'Grandpa', 'Stalled', []
)
Return value¶
('u32', 'u32')
State¶
State of the current authority set.
Python¶
result = substrate.query(
'Grandpa', 'State', []
)
Return value¶
{
'Live': None,
'Paused': None,
'PendingPause': {'delay': 'u32', 'scheduled_at': 'u32'},
'PendingResume': {'delay': 'u32', 'scheduled_at': 'u32'},
}
Constants¶
MaxAuthorities¶
Max Authorities in use
Value¶
100000
Python¶
constant = substrate.get_constant('Grandpa', 'MaxAuthorities')
Errors¶
ChangePending¶
Attempt to signal GRANDPA change with one already pending.
DuplicateOffenceReport¶
A given equivocation report is valid but already previously reported.
InvalidEquivocationProof¶
An equivocation proof provided as part of an equivocation report is invalid.
InvalidKeyOwnershipProof¶
A key ownership proof provided as part of an equivocation report is invalid.
PauseFailed¶
Attempt to signal GRANDPA pause when the authority set isn't live (either paused or already pending pause).
ResumeFailed¶
Attempt to signal GRANDPA resume when the authority set isn't paused (either live or already pending resume).
TooSoon¶
Cannot signal forced change so soon after last.
Historical¶
Hrmp¶
Calls¶
force_clean_hrmp¶
This extrinsic triggers the cleanup of all the HRMP storage items that a para may have. Normally this happens once per session, but this allows you to trigger the cleanup immediately for a specific parachain.
Origin must be Root.
Number of inbound and outbound channels for para must be provided as witness data of weighing.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| inbound | u32 |
| outbound | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'force_clean_hrmp', {
'inbound': 'u32',
'outbound': 'u32',
'para': 'u32',
}
)
force_open_hrmp_channel¶
Open a channel from a sender to a recipient ParaId using the Root origin. Although
opened by Root, the max_capacity and max_message_size are still subject to the Relay
Chain's configured limits.
Expected use is when one of the ParaIds involved in the channel is governed by the
Relay Chain, e.g. a common good parachain.
Attributes¶
| Name | Type |
|---|---|
| sender | ParaId |
| recipient | ParaId |
| max_capacity | u32 |
| max_message_size | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'force_open_hrmp_channel', {
'max_capacity': 'u32',
'max_message_size': 'u32',
'recipient': 'u32',
'sender': 'u32',
}
)
force_process_hrmp_close¶
Force process HRMP close channel requests.
If there are pending HRMP close channel requests, you can use this function process all of those requests immediately.
Total number of closing channels must be provided as witness data of weighing.
Attributes¶
| Name | Type |
|---|---|
| channels | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'force_process_hrmp_close', {'channels': 'u32'}
)
force_process_hrmp_open¶
Force process HRMP open channel requests.
If there are pending HRMP open channel requests, you can use this function process all of those requests immediately.
Total number of opening channels must be provided as witness data of weighing.
Attributes¶
| Name | Type |
|---|---|
| channels | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'force_process_hrmp_open', {'channels': 'u32'}
)
hrmp_accept_open_channel¶
Accept a pending open channel request from the given sender.
The channel will be opened only on the next session boundary.
Attributes¶
| Name | Type |
|---|---|
| sender | ParaId |
Python¶
call = substrate.compose_call(
'Hrmp', 'hrmp_accept_open_channel', {'sender': 'u32'}
)
hrmp_cancel_open_request¶
This cancels a pending open channel request. It can be canceled by either of the sender or the recipient for that request. The origin must be either of those.
The cancellation happens immediately. It is not possible to cancel the request if it is already accepted.
Total number of open requests (i.e. HrmpOpenChannelRequestsList) must be provided as
witness data.
Attributes¶
| Name | Type |
|---|---|
| channel_id | HrmpChannelId |
| open_requests | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'hrmp_cancel_open_request', {
'channel_id': {
'recipient': 'u32',
'sender': 'u32',
},
'open_requests': 'u32',
}
)
hrmp_close_channel¶
Initiate unilateral closing of a channel. The origin must be either the sender or the recipient in the channel being closed.
The closure can only happen on a session change.
Attributes¶
| Name | Type |
|---|---|
| channel_id | HrmpChannelId |
Python¶
call = substrate.compose_call(
'Hrmp', 'hrmp_close_channel', {
'channel_id': {
'recipient': 'u32',
'sender': 'u32',
},
}
)
hrmp_init_open_channel¶
Initiate opening a channel from a parachain to a given recipient with given channel parameters.
proposed_max_capacity- specifies how many messages can be in the channel at once.proposed_max_message_size- specifies the maximum size of the messages.
These numbers are a subject to the relay-chain configuration limits.
The channel can be opened only after the recipient confirms it and only on a session change.
Attributes¶
| Name | Type |
|---|---|
| recipient | ParaId |
| proposed_max_capacity | u32 |
| proposed_max_message_size | u32 |
Python¶
call = substrate.compose_call(
'Hrmp', 'hrmp_init_open_channel', {
'proposed_max_capacity': 'u32',
'proposed_max_message_size': 'u32',
'recipient': 'u32',
}
)
Events¶
ChannelClosed¶
HRMP channel closed. [by_parachain, channel_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | HrmpChannelId |
{'sender': 'u32', 'recipient': 'u32'} |
HrmpChannelForceOpened¶
An HRMP channel was opened via Root origin.
[sender, recipient, proposed_max_capacity, proposed_max_message_size]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | u32 |
u32 |
OpenChannelAccepted¶
Open HRMP channel accepted. [sender, recipient]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | ParaId |
u32 |
OpenChannelCanceled¶
An HRMP channel request sent by the receiver was canceled by either party.
[by_parachain, channel_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | HrmpChannelId |
{'sender': 'u32', 'recipient': 'u32'} |
OpenChannelRequested¶
Open HRMP channel requested.
[sender, recipient, proposed_max_capacity, proposed_max_message_size]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | u32 |
u32 |
Storage functions¶
HrmpAcceptedChannelRequestCount¶
This mapping tracks how many open channel requests were accepted by a given recipient para.
Invariant: HrmpOpenChannelRequests should contain the same number of items (_, X) with
confirmed set to true, as the number of HrmpAcceptedChannelRequestCount for X.
Python¶
result = substrate.query(
'Hrmp', 'HrmpAcceptedChannelRequestCount', ['u32']
)
Return value¶
'u32'
HrmpChannelContents¶
Storage for the messages for each channel.
Invariant: cannot be non-empty if the corresponding channel in HrmpChannels is None.
Python¶
result = substrate.query(
'Hrmp', 'HrmpChannelContents', [{'recipient': 'u32', 'sender': 'u32'}]
)
Return value¶
[{'data': 'Bytes', 'sent_at': 'u32'}]
HrmpChannelDigests¶
Maintains a mapping that can be used to answer the question: What paras sent a message at
the given block number for a given receiver. Invariants:
- The inner Vec<ParaId> is never empty.
- The inner Vec<ParaId> cannot store two same ParaId.
- The outer vector is sorted ascending by block number and cannot store two items with the
same block number.
Python¶
result = substrate.query(
'Hrmp', 'HrmpChannelDigests', ['u32']
)
Return value¶
[('u32', ['u32'])]
HrmpChannels¶
HRMP channel data associated with each para.
Invariant:
- each participant in the channel should satisfy Paras::is_valid_para(P) within a session.
Python¶
result = substrate.query(
'Hrmp', 'HrmpChannels', [{'recipient': 'u32', 'sender': 'u32'}]
)
Return value¶
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'recipient_deposit': 'u128',
'sender_deposit': 'u128',
'total_size': 'u32',
}
HrmpCloseChannelRequests¶
A set of pending HRMP close channel requests that are going to be closed during the session change. Used for checking if a given channel is registered for closure.
The set is accompanied by a list for iteration.
Invariant: - There are no channels that exists in list but not in the set and vice versa.
Python¶
result = substrate.query(
'Hrmp', 'HrmpCloseChannelRequests', [{'recipient': 'u32', 'sender': 'u32'}]
)
Return value¶
()
HrmpCloseChannelRequestsList¶
Python¶
result = substrate.query(
'Hrmp', 'HrmpCloseChannelRequestsList', []
)
Return value¶
[{'recipient': 'u32', 'sender': 'u32'}]
HrmpEgressChannelsIndex¶
Python¶
result = substrate.query(
'Hrmp', 'HrmpEgressChannelsIndex', ['u32']
)
Return value¶
['u32']
HrmpIngressChannelsIndex¶
Ingress/egress indexes allow to find all the senders and receivers given the opposite side. I.e.
(a) ingress index allows to find all the senders for a given recipient. (b) egress index allows to find all the recipients for a given sender.
Invariants:
- for each ingress index entry for P each item I in the index should present in
HrmpChannels as (I, P).
- for each egress index entry for P each item E in the index should present in
HrmpChannels as (P, E).
- there should be no other dangling channels in HrmpChannels.
- the vectors are sorted.
Python¶
result = substrate.query(
'Hrmp', 'HrmpIngressChannelsIndex', ['u32']
)
Return value¶
['u32']
HrmpOpenChannelRequestCount¶
This mapping tracks how many open channel requests are initiated by a given sender para.
Invariant: HrmpOpenChannelRequests should contain the same number of items that has
(X, _) as the number of HrmpOpenChannelRequestCount for X.
Python¶
result = substrate.query(
'Hrmp', 'HrmpOpenChannelRequestCount', ['u32']
)
Return value¶
'u32'
HrmpOpenChannelRequests¶
The set of pending HRMP open channel requests.
The set is accompanied by a list for iteration.
Invariant: - There are no channels that exists in list but not in the set and vice versa.
Python¶
result = substrate.query(
'Hrmp', 'HrmpOpenChannelRequests', [{'recipient': 'u32', 'sender': 'u32'}]
)
Return value¶
{
'_age': 'u32',
'confirmed': 'bool',
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'sender_deposit': 'u128',
}
HrmpOpenChannelRequestsList¶
Python¶
result = substrate.query(
'Hrmp', 'HrmpOpenChannelRequestsList', []
)
Return value¶
[{'recipient': 'u32', 'sender': 'u32'}]
HrmpWatermarks¶
The HRMP watermark associated with each para.
Invariant:
- each para P used here as a key should satisfy Paras::is_valid_para(P) within a session.
Python¶
result = substrate.query(
'Hrmp', 'HrmpWatermarks', ['u32']
)
Return value¶
'u32'
Errors¶
AcceptHrmpChannelAlreadyConfirmed¶
The channel is already confirmed.
AcceptHrmpChannelDoesntExist¶
The channel from the sender to the origin doesn't exist.
AcceptHrmpChannelLimitExceeded¶
The recipient already has the maximum number of allowed inbound channels.
CancelHrmpOpenChannelUnauthorized¶
Canceling is requested by neither the sender nor recipient of the open channel request.
CloseHrmpChannelAlreadyUnderway¶
The channel close request is already requested.
CloseHrmpChannelDoesntExist¶
The channel to be closed doesn't exist.
CloseHrmpChannelUnauthorized¶
The origin tries to close a channel where it is neither the sender nor the recipient.
OpenHrmpChannelAlreadyConfirmed¶
Cannot cancel an HRMP open channel request because it is already confirmed.
OpenHrmpChannelAlreadyExists¶
The channel already exists
OpenHrmpChannelAlreadyRequested¶
There is already a request to open the same channel.
OpenHrmpChannelCapacityExceedsLimit¶
The requested capacity exceeds the global limit.
OpenHrmpChannelDoesntExist¶
The open request doesn't exist.
OpenHrmpChannelInvalidRecipient¶
The recipient is not a valid para.
OpenHrmpChannelLimitExceeded¶
The sender already has the maximum number of allowed outbound channels.
OpenHrmpChannelMessageSizeExceedsLimit¶
The open request requested the message size that exceeds the global limit.
OpenHrmpChannelToSelf¶
The sender tried to open a channel to themselves.
OpenHrmpChannelZeroCapacity¶
The requested capacity is zero.
OpenHrmpChannelZeroMessageSize¶
The requested maximum message size is 0.
WrongWitness¶
The provided witness data is wrong.
Identity¶
Calls¶
add_registrar¶
Add a registrar to the system.
The dispatch origin for this call must be T::RegistrarOrigin.
account: the account of the registrar.
Emits RegistrarAdded if successful.
# <weight>
- O(R) where R registrar-count (governance-bounded and code-bounded).
- One storage mutation (codec O(R)).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'add_registrar', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
add_sub¶
Add the given account to the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
| data | Data |
Python¶
call = substrate.compose_call(
'Identity', 'add_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
cancel_request¶
Cancel a previous request.
Payment: A previously reserved deposit is returned on success.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is no longer requested.
Emits JudgementUnrequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- One storage mutation O(R + X).
- One event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
Python¶
call = substrate.compose_call(
'Identity', 'cancel_request', {'reg_index': 'u32'}
)
clear_identity¶
Clear an account's identity info and all sub-accounts and return all deposits.
Payment: All reserved balances on the account are returned.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
Emits IdentityCleared if successful.
# <weight>
- O(R + S + X)
- where R registrar-count (governance-bounded).
- where S subs-count (hard- and deposit-bounded).
- where X additional-field-count (deposit-bounded and code-bounded).
- One balance-unreserve operation.
- 2 storage reads and S + 2 storage deletions.
- One event.
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Identity', 'clear_identity', {}
)
kill_identity¶
Remove an account's identity and sub-account information and slash the deposits.
Payment: Reserved balances from set_subs and set_identity are slashed and handled by
Slash. Verification request deposits are not returned; they should be cancelled
manually using cancel_request.
The dispatch origin for this call must match T::ForceOrigin.
target: the account whose identity the judgement is upon. This must be an account with a registered identity.
Emits IdentityKilled if successful.
# <weight>
- O(R + S + X).
- One balance-reserve operation.
- S + 2 storage mutations.
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'kill_identity', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
provide_judgement¶
Provide a judgement for an account's identity.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is reg_index.
reg_index: the index of the registrar whose judgement is being made.target: the account whose identity the judgement is upon. This must be an account with a registered identity.judgement: the judgement of the registrar of indexreg_indexabouttarget.identity: The hash of the [IdentityInfo] for that the judgement is provided.
Emits JudgementGiven if successful.
# <weight>
- O(R + X).
- One balance-transfer operation.
- Up to one account-lookup operation.
- Storage: 1 read O(R), 1 mutate O(R + X).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| target | AccountIdLookupOf<T> |
| judgement | Judgement<BalanceOf<T>> |
| identity | T::Hash |
Python¶
call = substrate.compose_call(
'Identity', 'provide_judgement', {
'identity': '[u8; 32]',
'judgement': {
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
'reg_index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
quit_sub¶
Remove the sender as a sub-account.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender (not the original depositor).
The dispatch origin for this call must be Signed and the sender must have a registered super-identity.
NOTE: This should not normally be used, but is provided in the case that the non- controller of an account is maliciously registered as a sub-account.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Identity', 'quit_sub', {}
)
remove_sub¶
Remove the given account from the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'remove_sub', {
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
rename_sub¶
Alter the associated name of the given sub-account.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
| data | Data |
Python¶
call = substrate.compose_call(
'Identity', 'rename_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
request_judgement¶
Request a judgement from a registrar.
Payment: At most max_fee will be reserved for payment to the registrar if judgement
given.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is requested.max_fee: The maximum fee that may be paid. This should just be auto-populated as:
Self::registrars().get(reg_index).unwrap().fee
Emits JudgementRequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- Storage: 1 read O(R), 1 mutate O(X + R).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| max_fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'request_judgement', {
'max_fee': 'u128',
'reg_index': 'u32',
}
)
set_account_id¶
Change the account associated with a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.new: the new account ID.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'set_account_id', {
'index': 'u32',
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_fee¶
Set the fee required for a judgement to be requested from a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fee: the new fee.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'set_fee', {'fee': 'u128', 'index': 'u32'}
)
set_fields¶
Set the field information for a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fields: the fields that the registrar concerns themselves with.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fields | IdentityFields |
Python¶
call = substrate.compose_call(
'Identity', 'set_fields', {'fields': 'u64', 'index': 'u32'}
)
set_identity¶
Set an account's identity information and reserve the appropriate deposit.
If the account already has identity information, the deposit is taken as part payment for the new deposit.
The dispatch origin for this call must be Signed.
info: The identity information.
Emits IdentitySet if successful.
# <weight>
- O(X + X&\#x27; + R)
- where X additional-field-count (deposit-bounded and code-bounded)
- where R judgements-count (registrar-count-bounded)
- One balance reserve operation.
- One storage mutation (codec-read O(X&\#x27; + R), codec-write O(X + R)).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| info | Box<IdentityInfo<T::MaxAdditionalFields>> |
Python¶
call = substrate.compose_call(
'Identity', 'set_identity', {
'info': {
'additional': [
(
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (
None,
'[u8; 20]',
),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
}
)
set_subs¶
Set the sub-accounts of the sender.
Payment: Any aggregate balance reserved by previous set_subs calls will be returned
and an amount SubAccountDeposit will be reserved for each item in subs.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
subs: The identity's (new) sub-accounts.
# <weight>
- O(P + S)
- where P old-subs-count (hard- and deposit-bounded).
- where S subs-count (hard- and deposit-bounded).
- At most one balance operations.
- DB:
- P + S storage mutations (codec complexity O(1))
- One storage read (codec complexity O(P)).
- One storage write (codec complexity O(S)).
- One storage-exists (IdentityOf::contains_key).
# </weight>
Attributes¶
| Name | Type |
|---|---|
| subs | Vec<(T::AccountId, Data)> |
Python¶
call = substrate.compose_call(
'Identity', 'set_subs', {
'subs': [
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
}
)
Events¶
IdentityCleared¶
A name was cleared, and the given balance returned.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
IdentityKilled¶
A name was removed and the given balance slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
IdentitySet¶
A name was set or reset (which will remove all judgements).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
JudgementGiven¶
A judgement was given by a registrar.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| target | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementRequested¶
A judgement was asked from a registrar.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementUnrequested¶
A judgement request was retracted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
RegistrarAdded¶
A registrar was added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| registrar_index | RegistrarIndex |
u32 |
SubIdentityAdded¶
A sub-identity was added to an identity and the deposit paid.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRemoved¶
A sub-identity was removed from an identity and the deposit freed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRevoked¶
A sub-identity was cleared, and the given deposit repatriated from the main identity account to the sub-identity account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
Storage functions¶
IdentityOf¶
Information that is pertinent to identify the entity behind an account.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python¶
result = substrate.query(
'Identity', 'IdentityOf', ['AccountId']
)
Return value¶
{
'deposit': 'u128',
'info': {
'additional': [
(
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (None, '[u8; 20]'),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
'judgements': [
(
'u32',
{
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
),
],
}
Registrars¶
The set of registrars. Not expected to get very big as can only be added through a special origin (likely a council motion).
The index into this can be cast to RegistrarIndex to get a valid value.
Python¶
result = substrate.query(
'Identity', 'Registrars', []
)
Return value¶
[(None, {'account': 'AccountId', 'fee': 'u128', 'fields': 'u64'})]
SubsOf¶
Alternative "sub" identities of this account.
The first item is the deposit, the second is a vector of the accounts.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python¶
result = substrate.query(
'Identity', 'SubsOf', ['AccountId']
)
Return value¶
('u128', ['AccountId'])
SuperOf¶
The super-identity of an alternative "sub" identity together with its name, within that
context. If the account is not some other account's sub-identity, then just None.
Python¶
result = substrate.query(
'Identity', 'SuperOf', ['AccountId']
)
Return value¶
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
)
Constants¶
BasicDeposit¶
The amount held on deposit for a registered identity
Value¶
333333333000
Python¶
constant = substrate.get_constant('Identity', 'BasicDeposit')
FieldDeposit¶
The amount held on deposit per additional field for a registered identity.
Value¶
83333333250
Python¶
constant = substrate.get_constant('Identity', 'FieldDeposit')
MaxAdditionalFields¶
Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O required to access an identity, but can be pretty high.
Value¶
100
Python¶
constant = substrate.get_constant('Identity', 'MaxAdditionalFields')
MaxRegistrars¶
Maxmimum number of registrars allowed in the system. Needed to bound the complexity of, e.g., updating judgements.
Value¶
20
Python¶
constant = substrate.get_constant('Identity', 'MaxRegistrars')
MaxSubAccounts¶
The maximum number of sub-accounts allowed per identified account.
Value¶
100
Python¶
constant = substrate.get_constant('Identity', 'MaxSubAccounts')
SubAccountDeposit¶
The amount held on deposit for a registered subaccount. This should account for the fact that one storage item's value will increase by the size of an account ID, and there will be another trie item whose value is the size of an account ID plus 32 bytes.
Value¶
66666666600
Python¶
constant = substrate.get_constant('Identity', 'SubAccountDeposit')
Errors¶
AlreadyClaimed¶
Account ID is already named.
EmptyIndex¶
Empty index.
FeeChanged¶
Fee is changed.
InvalidIndex¶
The index is invalid.
InvalidJudgement¶
Invalid judgement.
InvalidTarget¶
The target is invalid.
JudgementForDifferentIdentity¶
The provided judgement was for a different identity.
JudgementGiven¶
Judgement given.
JudgementPaymentFailed¶
Error that occurs when there is an issue paying for judgement.
NoIdentity¶
No identity found.
NotFound¶
Account isn't found.
NotNamed¶
Account isn't named.
NotOwned¶
Sub-account isn't owned by sender.
NotSub¶
Sender is not a sub-account.
StickyJudgement¶
Sticky judgement.
TooManyFields¶
Too many additional fields.
TooManyRegistrars¶
Maximum amount of registrars reached. Cannot add any more.
TooManySubAccounts¶
Too many subs-accounts.
ImOnline¶
Calls¶
heartbeat¶
# <weight>
- Complexity: O(K + E) where K is length of Keys (heartbeat.validators_len) and E is
length of heartbeat.network_state.external_address
- O(K): decoding of length K
- O(E): decoding/encoding of length E
- DbReads: pallet_session Validators, pallet_session CurrentIndex, Keys,
ReceivedHeartbeats
- DbWrites: ReceivedHeartbeats
# </weight>
Attributes¶
| Name | Type |
|---|---|
| heartbeat | Heartbeat<T::BlockNumber> |
| signature | <T::AuthorityId as RuntimeAppPublic>::Signature |
Python¶
call = substrate.compose_call(
'ImOnline', 'heartbeat', {
'heartbeat': {
'authority_index': 'u32',
'block_number': 'u32',
'network_state': {
'external_addresses': [
'Bytes',
],
'peer_id': 'Bytes',
},
'session_index': 'u32',
'validators_len': 'u32',
},
'signature': '[u8; 64]',
}
)
Events¶
AllGood¶
At the end of the session, no offence was committed.
Attributes¶
No attributes
HeartbeatReceived¶
A new heartbeat was received from AuthorityId.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| authority_id | T::AuthorityId |
[u8; 32] |
SomeOffline¶
At the end of the session, at least one validator was found to be offline.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| offline | Vec<IdentificationTuple<T>> |
[('AccountId', {'total': 'u128', 'own': 'u128', 'others': [{'who': 'AccountId', 'value': 'u128'}]})] |
Storage functions¶
AuthoredBlocks¶
For each session index, we keep a mapping of ValidatorId<T> to the
number of blocks authored by the given authority.
Python¶
result = substrate.query(
'ImOnline', 'AuthoredBlocks', ['u32', 'AccountId']
)
Return value¶
'u32'
HeartbeatAfter¶
The block number after which it's ok to send heartbeats in the current session.
At the beginning of each session we set this to a value that should fall roughly in the middle of the session duration. The idea is to first wait for the validators to produce a block in the current session, so that the heartbeat later on will not be necessary.
This value will only be used as a fallback if we fail to get a proper session
progress estimate from NextSessionRotation, as those estimates should be
more accurate then the value we calculate for HeartbeatAfter.
Python¶
result = substrate.query(
'ImOnline', 'HeartbeatAfter', []
)
Return value¶
'u32'
Keys¶
The current set of keys that may issue a heartbeat.
Python¶
result = substrate.query(
'ImOnline', 'Keys', []
)
Return value¶
['[u8; 32]']
ReceivedHeartbeats¶
For each session index, we keep a mapping of SessionIndex and AuthIndex to
WrapperOpaque<BoundedOpaqueNetworkState>.
Python¶
result = substrate.query(
'ImOnline', 'ReceivedHeartbeats', ['u32', 'u32']
)
Return value¶
('u32', {'external_addresses': ['Bytes'], 'peer_id': 'Bytes'})
Constants¶
UnsignedPriority¶
A configuration for base priority of unsigned transactions.
This is exposed so that it can be tuned for particular runtime, when multiple pallets send unsigned transactions.
Value¶
18446744073709551615
Python¶
constant = substrate.get_constant('ImOnline', 'UnsignedPriority')
Errors¶
DuplicatedHeartbeat¶
Duplicated heartbeat.
InvalidKey¶
Non existent public key.
Indices¶
Calls¶
claim¶
Assign an previously unassigned index.
Payment: Deposit is reserved from the sender account.
The dispatch origin for this call must be Signed.
index: the index to be claimed. This must not be in use.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One reserve operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes¶
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python¶
call = substrate.compose_call(
'Indices', 'claim', {'index': 'u32'}
)
force_transfer¶
Force an index to an account. This doesn't require a deposit. If the index is already held, then any deposit is reimbursed to its current owner.
The dispatch origin for this call must be Root.
index: the index to be (re-)assigned.new: the new owner of the index. This function is a no-op if it is equal to sender.freeze: if set totrue, will freeze the index so it cannot be transferred.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- Up to one reserve operation.
- One event.
- DB Weight:
- Reads: Indices Accounts, System Account (original owner)
- Writes: Indices Accounts, System Account (original owner) # </weight>
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
| index | T::AccountIndex |
| freeze | bool |
Python¶
call = substrate.compose_call(
'Indices', 'force_transfer', {
'freeze': 'bool',
'index': 'u32',
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
free¶
Free up an index owned by the sender.
Payment: Any previous deposit placed for the index is unreserved in the sender account.
The dispatch origin for this call must be Signed and the sender must own the index.
index: the index to be freed. This must be owned by the sender.
Emits IndexFreed if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One reserve operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes¶
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python¶
call = substrate.compose_call(
'Indices', 'free', {'index': 'u32'}
)
freeze¶
Freeze an index so it will always point to the sender account. This consumes the deposit.
The dispatch origin for this call must be Signed and the signing account must have a
non-frozen account index.
index: the index to be frozen in place.
Emits IndexFrozen if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- Up to one slash operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes¶
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python¶
call = substrate.compose_call(
'Indices', 'freeze', {'index': 'u32'}
)
transfer¶
Assign an index already owned by the sender to another account. The balance reservation is effectively transferred to the new account.
The dispatch origin for this call must be Signed.
index: the index to be re-assigned. This must be owned by the sender.new: the new owner of the index. This function is a no-op if it is equal to sender.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One transfer operation.
- One event.
- DB Weight:
- Reads: Indices Accounts, System Account (recipient)
- Writes: Indices Accounts, System Account (recipient) # </weight>
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
| index | T::AccountIndex |
Python¶
call = substrate.compose_call(
'Indices', 'transfer', {
'index': 'u32',
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
IndexAssigned¶
A account index was assigned.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| index | T::AccountIndex |
u32 |
IndexFreed¶
A account index has been freed up (unassigned).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | T::AccountIndex |
u32 |
IndexFrozen¶
A account index has been frozen to its current account ID.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | T::AccountIndex |
u32 |
| who | T::AccountId |
AccountId |
Storage functions¶
Accounts¶
The lookup from index to account.
Python¶
result = substrate.query(
'Indices', 'Accounts', ['u32']
)
Return value¶
('AccountId', 'u128', 'bool')
Constants¶
Deposit¶
The deposit needed for reserving an index.
Value¶
33333333300
Python¶
constant = substrate.get_constant('Indices', 'Deposit')
Errors¶
InUse¶
The index was not available.
NotAssigned¶
The index was not already assigned.
NotOwner¶
The index is assigned to another account.
NotTransfer¶
The source and destination accounts are identical.
Permanent¶
The index is permanent and may not be freed/changed.
Initializer¶
Calls¶
force_approve¶
Issue a signal to the consensus engine to forcibly act as though all parachain blocks in all relay chain blocks up to and including the given number in the current chain are valid and should be finalized.
Attributes¶
| Name | Type |
|---|---|
| up_to | BlockNumber |
Python¶
call = substrate.compose_call(
'Initializer', 'force_approve', {'up_to': 'u32'}
)
Storage functions¶
BufferedSessionChanges¶
Buffered session changes along with the block number at which they should be applied.
Typically this will be empty or one element long. Apart from that this item never hits the storage.
However this is a Vec regardless to handle various edge cases that may occur at runtime
upgrade boundaries or if governance intervenes.
Python¶
result = substrate.query(
'Initializer', 'BufferedSessionChanges', []
)
Return value¶
[{'queued': ['[u8; 32]'], 'session_index': 'u32', 'validators': ['[u8; 32]']}]
HasInitialized¶
Whether the parachains modules have been initialized within this block.
Semantically a bool, but this guarantees it should never hit the trie,
as this is cleared in on_finalize and Frame optimizes None values to be empty values.
As a bool, set(false) and remove() both lead to the next get() being false, but one of
them writes to the trie and one does not. This confusion makes Option<()> more suitable for
the semantics of this variable.
Python¶
result = substrate.query(
'Initializer', 'HasInitialized', []
)
Return value¶
()
Multisig¶
Calls¶
approve_as_multi¶
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call_hash: The hash of the call to be executed.
NOTE: If this is the final approval, you will want to use as_multi instead.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Read: Multisig Storage, [Caller Account]
- Write: Multisig Storage, [Caller Account] # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call_hash | [u8; 32] |
| max_weight | Weight |
Python¶
call = substrate.compose_call(
'Multisig', 'approve_as_multi', {
'call_hash': '[u8; 32]',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi¶
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
If there are enough, then dispatch the call.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call: The call to be executed.
NOTE: Unless this is the final approval, you will generally want to use
approve_as_multi instead, since it only requires a hash of the call.
Result is equivalent to the dispatched result if threshold is exactly 1. Otherwise
on success, result is Ok and the result from the interior call, if it was executed,
may be found in the deposited MultisigExecuted event.
# <weight>
- O(S + Z + Call).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One call encode & hash, both of complexity O(Z) where Z is tx-len.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- The weight of the call.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Reads: Multisig Storage, [Caller Account]
- Writes: Multisig Storage, [Caller Account]
- Plus Call Weight # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call | Box<<T as Config>::RuntimeCall> |
| max_weight | Weight |
Python¶
call = substrate.compose_call(
'Multisig', 'as_multi', {
'call': 'Call',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi_threshold_1¶
Immediately dispatch a multi-signature call using a single approval from the caller.
The dispatch origin for this call must be Signed.
other_signatories: The accounts (other than the sender) who are part of the multi-signature, but do not participate in the approval process.call: The call to be executed.
Result is equivalent to the dispatched result.
# <weight> O(Z + C) where Z is the length of the call and C its execution weight.
- DB Weight: None
- Plus Call Weight # </weight>
Attributes¶
| Name | Type |
|---|---|
| other_signatories | Vec<T::AccountId> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Multisig', 'as_multi_threshold_1', {
'call': 'Call',
'other_signatories': ['AccountId'],
}
)
cancel_as_multi¶
Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously for this operation will be unreserved on success.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.timepoint: The timepoint (block number and transaction index) of the first approval transaction for this dispatch.call_hash: The hash of the call to be executed.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- One event.
- I/O: 1 read O(S), one remove.
- Storage: removes one item.
- DB Weight:
- Read: Multisig Storage, [Caller Account], Refund Account
- Write: Multisig Storage, [Caller Account], Refund Account # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| timepoint | Timepoint<T::BlockNumber> |
| call_hash | [u8; 32] |
Python¶
call = substrate.compose_call(
'Multisig', 'cancel_as_multi', {
'call_hash': '[u8; 32]',
'other_signatories': ['AccountId'],
'threshold': 'u16',
'timepoint': {
'height': 'u32',
'index': 'u32',
},
}
)
Events¶
MultisigApproval¶
A multisig operation has been approved by someone.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigCancelled¶
A multisig operation has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| cancelling | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigExecuted¶
A multisig operation has been executed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
NewMultisig¶
A new multisig operation has begun.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
Storage functions¶
Multisigs¶
The set of open multisig operations.
Python¶
result = substrate.query(
'Multisig', 'Multisigs', ['AccountId', '[u8; 32]']
)
Return value¶
{
'approvals': ['AccountId'],
'deposit': 'u128',
'depositor': 'AccountId',
'when': {'height': 'u32', 'index': 'u32'},
}
Constants¶
DepositBase¶
The base amount of currency needed to reserve for creating a multisig execution or to store a dispatch call for later.
This is held for an additional storage item whose value size is
4 + sizeof((BlockNumber, Balance, AccountId)) bytes and whose key size is
32 + sizeof(AccountId) bytes.
Value¶
669599996400
Python¶
constant = substrate.get_constant('Multisig', 'DepositBase')
DepositFactor¶
The amount of currency needed per unit threshold when creating a multisig execution.
This is held for adding 32 bytes more into a pre-existing storage value.
Value¶
1066665600
Python¶
constant = substrate.get_constant('Multisig', 'DepositFactor')
MaxSignatories¶
The maximum amount of signatories allowed in the multisig.
Value¶
100
Python¶
constant = substrate.get_constant('Multisig', 'MaxSignatories')
Errors¶
AlreadyApproved¶
Call is already approved by this signatory.
AlreadyStored¶
The data to be stored is already stored.
MaxWeightTooLow¶
The maximum weight information provided was too low.
MinimumThreshold¶
Threshold must be 2 or greater.
NoApprovalsNeeded¶
Call doesn't need any (more) approvals.
NoTimepoint¶
No timepoint was given, yet the multisig operation is already underway.
NotFound¶
Multisig operation not found when attempting to cancel.
NotOwner¶
Only the account that originally created the multisig is able to cancel it.
SenderInSignatories¶
The sender was contained in the other signatories; it shouldn't be.
SignatoriesOutOfOrder¶
The signatories were provided out of order; they should be ordered.
TooFewSignatories¶
There are too few signatories in the list.
TooManySignatories¶
There are too many signatories in the list.
UnexpectedTimepoint¶
A timepoint was given, yet no multisig operation is underway.
WrongTimepoint¶
A different timepoint was given to the multisig operation that is underway.
Nis¶
Calls¶
fund_deficit¶
Ensure we have sufficient funding for all potential payouts.
origin: Must be accepted byFundOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Nis', 'fund_deficit', {}
)
place_bid¶
Place a bid.
Origin must be Signed, and account must have at least amount in free balance.
amount: The amount of the bid; these funds will be reserved, and if/when consolidated, removed. Must be at leastMinBid.duration: The number of periods before which the newly consolidated bid may be thawed. Must be greater than 1 and no more thanQueueCount.
Complexities:
- Queues[duration].len() (just take max).
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
| duration | u32 |
Python¶
call = substrate.compose_call(
'Nis', 'place_bid', {'amount': 'u128', 'duration': 'u32'}
)
retract_bid¶
Retract a previously placed bid.
Origin must be Signed, and the account should have previously issued a still-active bid
of amount for duration.
amount: The amount of the previous bid.duration: The duration of the previous bid.
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
| duration | u32 |
Python¶
call = substrate.compose_call(
'Nis', 'retract_bid', {'amount': 'u128', 'duration': 'u32'}
)
thaw¶
Reduce or remove an outstanding receipt, placing the according proportion of funds into the account of the owner.
origin: Must be Signed and the account must be the owner of the receiptindexas well as any fungible counterpart.index: The index of the receipt.portion: IfSome, then only the given portion of the receipt should be thawed. IfNone, then all of it should be.
Attributes¶
| Name | Type |
|---|---|
| index | ReceiptIndex |
| portion | `Option< |
| >` |
Python¶
call = substrate.compose_call(
'Nis', 'thaw', {
'index': 'u32',
'portion': (None, 'u128'),
}
)
Events¶
BidDropped¶
A bid was dropped from a queue because of another, more substantial, bid was present.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
| duration | u32 |
u32 |
BidPlaced¶
A bid was successfully placed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
| duration | u32 |
u32 |
BidRetracted¶
A bid was successfully removed (before being accepted).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
| duration | u32 |
u32 |
Funded¶
An automatic funding of the deficit was made.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| deficit | BalanceOf<T> |
u128 |
Issued¶
A bid was accepted. The balance may not be released until expiry.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReceiptIndex |
u32 |
| expiry | T::BlockNumber |
u32 |
| who | T::AccountId |
AccountId |
| proportion | Perquintill |
u64 |
| amount | BalanceOf<T> |
u128 |
Thawed¶
An receipt has been (at least partially) thawed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReceiptIndex |
u32 |
| who | T::AccountId |
AccountId |
| proportion | Perquintill |
u64 |
| amount | BalanceOf<T> |
u128 |
| dropped | bool |
bool |
Transferred¶
A receipt was transfered.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| index | ReceiptIndex |
u32 |
Storage functions¶
QueueTotals¶
The totals of items and balances within each queue. Saves a lot of storage reads in the case of sparsely packed queues.
The vector is indexed by duration in Periods, offset by one, so information on the queue
whose duration is one Period would be storage 0.
Python¶
result = substrate.query(
'Nis', 'QueueTotals', []
)
Return value¶
[('u32', 'u128')]
Queues¶
The queues of bids. Indexed by duration (in Periods).
Python¶
result = substrate.query(
'Nis', 'Queues', ['u32']
)
Return value¶
[{'amount': 'u128', 'who': 'AccountId'}]
Receipts¶
The currently outstanding receipts, indexed according to the order of creation.
Python¶
result = substrate.query(
'Nis', 'Receipts', ['u32']
)
Return value¶
{'expiry': 'u32', 'proportion': 'u64', 'who': 'AccountId'}
Summary¶
Summary information over the general state.
Python¶
result = substrate.query(
'Nis', 'Summary', []
)
Return value¶
{
'index': 'u32',
'last_period': 'u32',
'proportion_owed': 'u64',
'thawed': 'u64',
}
Constants¶
BasePeriod¶
The base period for the duration queues. This is the common multiple across all supported freezing durations that can be bid upon.
Value¶
100800
Python¶
constant = substrate.get_constant('Nis', 'BasePeriod')
FifoQueueLen¶
Portion of the queue which is free from ordering and just a FIFO.
Must be no greater than MaxQueueLen.
Value¶
250
Python¶
constant = substrate.get_constant('Nis', 'FifoQueueLen')
IntakePeriod¶
The number of blocks between consecutive attempts to dequeue bids and create receipts.
A larger value results in fewer storage hits each block, but a slower period to get to the target.
Value¶
50
Python¶
constant = substrate.get_constant('Nis', 'IntakePeriod')
MaxIntakeWeight¶
The maximum amount of bids that can consolidated into receipts in a single intake. A larger value here means less of the block available for transactions should there be a glut of bids.
Value¶
{'proof_size': 1844674407370955161, 'ref_time': 200000000000}
Python¶
constant = substrate.get_constant('Nis', 'MaxIntakeWeight')
MaxQueueLen¶
Maximum number of items that may be in each duration queue.
Must be larger than zero.
Value¶
1000
Python¶
constant = substrate.get_constant('Nis', 'MaxQueueLen')
MinBid¶
The minimum amount of funds that may be placed in a bid. Note that this does not actually limit the amount which may be represented in a receipt since bids may be split up by the system.
It should be at least big enough to ensure that there is no possible storage spam attack or queue-filling attack.
Value¶
3333333333300
Python¶
constant = substrate.get_constant('Nis', 'MinBid')
MinReceipt¶
The minimum amount of funds which may intentionally be left remaining under a single receipt.
Value¶
100000000000
Python¶
constant = substrate.get_constant('Nis', 'MinReceipt')
PalletId¶
The treasury's pallet id, used for deriving its sovereign account ID.
Value¶
'0x70792f6e69732020'
Python¶
constant = substrate.get_constant('Nis', 'PalletId')
QueueCount¶
Number of duration queues in total. This sets the maximum duration supported, which is
this value multiplied by Period.
Value¶
500
Python¶
constant = substrate.get_constant('Nis', 'QueueCount')
ThawThrottle¶
The maximum proportion which may be thawed and the period over which it is reset.
Value¶
(250000000000000000, 5)
Python¶
constant = substrate.get_constant('Nis', 'ThawThrottle')
Errors¶
AmountTooSmall¶
The amount of the bid is less than the minimum allowed.
BidTooLow¶
The queue for the bid's duration is full and the amount bid is too low to get in through replacing an existing bid.
DurationTooBig¶
The duration is the bid is greater than the number of queues.
DurationTooSmall¶
The duration of the bid is less than one.
Funded¶
There are enough funds for what is required.
MakesDust¶
The operation would result in a receipt worth an insignficant value.
NotExpired¶
Bond not yet at expiry date.
NotFound¶
The given bid for retraction is not found.
NotOwner¶
Not the owner of the receipt.
Throttled¶
The thaw throttle has been reached for this period.
TooMuch¶
The portion supplied is beyond the value of the receipt.
Unfunded¶
Not enough funds are held to pay out.
Unknown¶
Bond index is unknown.
NisCounterpartBalances¶
Calls¶
force_transfer¶
Exactly as transfer, except the origin must be root and the source account may be
specified.
# <weight>
- Same as transfer, but additional read and write because the source account is not
assumed to be in the overlay.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| source | AccountIdLookupOf<T> |
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'force_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
force_unreserve¶
Unreserve some balance from a user by force.
Can only be called by ROOT.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'force_unreserve', {
'amount': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_balance¶
Set the balances of a given account.
This will alter FreeBalance and ReservedBalance in storage. it will
also alter the total issuance of the system (TotalIssuance) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (frame_system::AccountNonce).
The dispatch origin for this call is root.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| new_free | T::Balance |
| new_reserved | T::Balance |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'set_balance', {
'new_free': 'u128',
'new_reserved': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer¶
Transfer some liquid free balance to another account.
transfer will set the FreeBalance of the sender and receiver.
If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped.
The dispatch origin for this call must be Signed by the transactor.
# <weight> - Dependent on arguments but not critical, given proper implementations for input config types. See related functions below. - It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdrawis always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_accountto be called. - Removing enough funds from an account will trigger
T::DustRemoval::on_unbalanced. transfer_keep_aliveworks the same way astransfer, but has an additional check that the transfer will not kill the origin account.
- Origin account is already in memory, so no DB operations for them. # </weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_all¶
Transfer the entire transferable balance from the caller account.
NOTE: This function only attempts to transfer transferable balances. This means that
any locked, reserved, or existential deposits (when keep_alive is true), will not be
transferred by this function. To ensure that this function results in a killed account,
you might need to prepare the account by removing any reference counters, storage
deposits, etc...
The dispatch origin of this call must be Signed.
dest: The recipient of the transfer.keep_alive: A boolean to determine if thetransfer_alloperation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true). # <weight>- O(1). Just like transfer, but reading the user's transferable balance first. #</weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| keep_alive | bool |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'transfer_all', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'keep_alive': 'bool',
}
)
transfer_keep_alive¶
Same as the [transfer] call, but with a check that the transfer will not kill the
origin account.
99% of the time you want [transfer] instead.
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'NisCounterpartBalances', 'transfer_keep_alive', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
Events¶
BalanceSet¶
A balance was set by root.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| free | T::Balance |
u128 |
| reserved | T::Balance |
u128 |
Deposit¶
Some amount was deposited (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
DustLost¶
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Endowed¶
An account was created with some free balance.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| free_balance | T::Balance |
u128 |
ReserveRepatriated¶
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
| destination_status | Status |
('Free', 'Reserved') |
Reserved¶
Some balance was reserved (moved from free to reserved).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Slashed¶
Some amount was removed from the account (e.g. for misbehavior).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Transfer¶
Transfer succeeded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Unreserved¶
Some balance was unreserved (moved from reserved to free).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Withdraw¶
Some amount was withdrawn from the account (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions¶
Account¶
The Balances pallet example of storing the balance of an account.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
}
You can also store the balance of an account in the System pallet.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = System
}
But this comes with tradeoffs, storing account balances in the system pallet stores
frame_system data alongside the account data contrary to storing account balances in the
Balances pallet, which uses a StorageMap to store balances data only.
NOTE: This is only used in the case that this pallet is used to store balances.
Python¶
result = substrate.query(
'NisCounterpartBalances', 'Account', ['AccountId']
)
Return value¶
{
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
}
InactiveIssuance¶
The total units of outstanding deactivated balance in the system.
Python¶
result = substrate.query(
'NisCounterpartBalances', 'InactiveIssuance', []
)
Return value¶
'u128'
Locks¶
Any liquidity locks on some account balances. NOTE: Should only be accessed when setting, changing and freeing a lock.
Python¶
result = substrate.query(
'NisCounterpartBalances', 'Locks', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]', 'reasons': ('Fee', 'Misc', 'All')}]
Reserves¶
Named reserves on some account balances.
Python¶
result = substrate.query(
'NisCounterpartBalances', 'Reserves', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]'}]
TotalIssuance¶
The total units issued in the system.
Python¶
result = substrate.query(
'NisCounterpartBalances', 'TotalIssuance', []
)
Return value¶
'u128'
Constants¶
ExistentialDeposit¶
The minimum amount required to keep an account open.
Value¶
10000000000
Python¶
constant = substrate.get_constant('NisCounterpartBalances', 'ExistentialDeposit')
MaxLocks¶
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Value¶
4
Python¶
constant = substrate.get_constant('NisCounterpartBalances', 'MaxLocks')
MaxReserves¶
The maximum number of named reserves that can exist on an account.
Value¶
4
Python¶
constant = substrate.get_constant('NisCounterpartBalances', 'MaxReserves')
Errors¶
DeadAccount¶
Beneficiary account must pre-exist
ExistentialDeposit¶
Value too low to create account due to existential deposit
ExistingVestingSchedule¶
A vesting schedule already exists for this account
InsufficientBalance¶
Balance too low to send value.
KeepAlive¶
Transfer/payment would kill account
LiquidityRestrictions¶
Account liquidity restrictions prevent withdrawal
TooManyReserves¶
Number of named reserves exceed MaxReserves
VestingBalance¶
Vesting balance too high to send value
NominationPools¶
Calls¶
bond_extra¶
Bond extra more funds from origin into the pool to which they already belong.
Additional funds can come from either the free balance of the account, of from the
accumulated rewards, see [BondExtra].
Bonding extra funds implies an automatic payout of all pending rewards as well.
Attributes¶
| Name | Type |
|---|---|
| extra | BondExtra<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'NominationPools', 'bond_extra', {
'extra': {
'FreeBalance': 'u128',
'Rewards': None,
},
}
)
chill¶
Chill on behalf of the pool.
The dispatch origin of this call must be signed by the pool nominator or the pool
root role, same as [Pallet::nominate].
This directly forward the call to the staking pallet, on behalf of the pool bonded account.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
Python¶
call = substrate.compose_call(
'NominationPools', 'chill', {'pool_id': 'u32'}
)
claim_payout¶
A bonded member can use this to claim their payout based on the rewards that the pool has accumulated since their last claimed payout (OR since joining if this is there first time claiming rewards). The payout will be transferred to the member's account.
The member will earn rewards pro rata based on the members stake vs the sum of the members in the pools stake. Rewards do not "expire".
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'NominationPools', 'claim_payout', {}
)
create¶
Create a new delegation pool.
# Arguments
amount- The amount of funds to delegate to the pool. This also acts of a sort of deposit since the pools creator cannot fully unbond funds until the pool is being destroyed.index- A disambiguation index for creating the account. Likely only useful when creating multiple pools in the same extrinsic.root- The account to set as [PoolRoles::root].nominator- The account to set as the [PoolRoles::nominator].state_toggler- The account to set as the [PoolRoles::state_toggler].
# Note
In addition to amount, the caller will transfer the existential deposit; so the caller
needs at have at least amount + existential_deposit transferrable.
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
| root | AccountIdLookupOf<T> |
| nominator | AccountIdLookupOf<T> |
| state_toggler | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'NominationPools', 'create', {
'amount': 'u128',
'nominator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'root': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'state_toggler': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
create_with_pool_id¶
Create a new delegation pool with a previously used pool id
# Arguments
same as create with the inclusion of
* pool_id - `A valid PoolId.
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
| root | AccountIdLookupOf<T> |
| nominator | AccountIdLookupOf<T> |
| state_toggler | AccountIdLookupOf<T> |
| pool_id | PoolId |
Python¶
call = substrate.compose_call(
'NominationPools', 'create_with_pool_id', {
'amount': 'u128',
'nominator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'pool_id': 'u32',
'root': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'state_toggler': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
join¶
Stake funds with a pool. The amount to bond is transferred from the member to the pools account and immediately increases the pools bond.
# Note
- An account can only be a member of a single pool.
- An account cannot join the same pool multiple times.
- This call will not dust the member account, so the member must have at least
existential deposit + amountin their account. - Only a pool with [
PoolState::Open] can be joined
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
| pool_id | PoolId |
Python¶
call = substrate.compose_call(
'NominationPools', 'join', {'amount': 'u128', 'pool_id': 'u32'}
)
nominate¶
Nominate on behalf of the pool.
The dispatch origin of this call must be signed by the pool nominator or the pool root role.
This directly forward the call to the staking pallet, on behalf of the pool bonded account.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
| validators | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'NominationPools', 'nominate', {
'pool_id': 'u32',
'validators': ['AccountId'],
}
)
pool_withdraw_unbonded¶
Call withdraw_unbonded for the pools account. This call can be made by any account.
This is useful if their are too many unlocking chunks to call unbond, and some
can be cleared by withdrawing. In the case there are too many unlocking chunks, the user
would probably see an error like NoMoreChunks emitted from the staking system when
they attempt to unbond.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'NominationPools', 'pool_withdraw_unbonded', {
'num_slashing_spans': 'u32',
'pool_id': 'u32',
}
)
set_configs¶
Update configurations for the nomination pools. The origin for this call must be Root.
# Arguments
min_join_bond- Set [MinJoinBond].min_create_bond- Set [MinCreateBond].max_pools- Set [MaxPools].max_members- Set [MaxPoolMembers].max_members_per_pool- Set [MaxPoolMembersPerPool].
Attributes¶
| Name | Type |
|---|---|
| min_join_bond | ConfigOp<BalanceOf<T>> |
| min_create_bond | ConfigOp<BalanceOf<T>> |
| max_pools | ConfigOp<u32> |
| max_members | ConfigOp<u32> |
| max_members_per_pool | ConfigOp<u32> |
Python¶
call = substrate.compose_call(
'NominationPools', 'set_configs', {
'max_members': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'max_members_per_pool': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'max_pools': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'min_create_bond': {
'Noop': None,
'Remove': None,
'Set': 'u128',
},
'min_join_bond': {
'Noop': None,
'Remove': None,
'Set': 'u128',
},
}
)
set_metadata¶
Set a new metadata for the pool.
The dispatch origin of this call must be signed by the state toggler, or the root role of the pool.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
| metadata | Vec<u8> |
Python¶
call = substrate.compose_call(
'NominationPools', 'set_metadata', {
'metadata': 'Bytes',
'pool_id': 'u32',
}
)
set_state¶
Set a new state for the pool.
If a pool is already in the Destroying state, then under no condition can its state
change again.
The dispatch origin of this call must be either:
- signed by the state toggler, or the root role of the pool,
- if the pool conditions to be open are NOT met (as described by
ok_to_be_open), and then the state of the pool can be permissionlessly changed toDestroying.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
| state | PoolState |
Python¶
call = substrate.compose_call(
'NominationPools', 'set_state', {
'pool_id': 'u32',
'state': (
'Open',
'Blocked',
'Destroying',
),
}
)
unbond¶
Unbond up to unbonding_points of the member_account's funds from the pool. It
implicitly collects the rewards one last time, since not doing so would mean some
rewards would be forfeited.
Under certain conditions, this call can be dispatched permissionlessly (i.e. by any account).
# Conditions for a permissionless dispatch.
- The pool is blocked and the caller is either the root or state-toggler. This is refereed to as a kick.
- The pool is destroying and the member is not the depositor.
- The pool is destroying, the member is the depositor and no other members are in the pool.
## Conditions for permissioned dispatch (i.e. the caller is also the
member_account):
- The caller is not the depositor.
- The caller is the depositor, the pool is destroying and no other members are in the pool.
# Note
If there are too many unlocking chunks to unbond with the pool account,
[Call::pool_withdraw_unbonded] can be called to try and minimize unlocking chunks.
The [StakingInterface::unbond] will implicitly call [Call::pool_withdraw_unbonded]
to try to free chunks if necessary (ie. if unbound was called and no unlocking chunks
are available). However, it may not be possible to release the current unlocking chunks,
in which case, the result of this call will likely be the NoMoreChunks error from the
staking system.
Attributes¶
| Name | Type |
|---|---|
| member_account | AccountIdLookupOf<T> |
| unbonding_points | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'NominationPools', 'unbond', {
'member_account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'unbonding_points': 'u128',
}
)
update_roles¶
Update the roles of the pool.
The root is the only entity that can change any of the roles, including itself, excluding the depositor, who can never change.
It emits an event, notifying UIs of the role change. This event is quite relevant to most pool members and they should be informed of changes to pool roles.
Attributes¶
| Name | Type |
|---|---|
| pool_id | PoolId |
| new_root | ConfigOp<T::AccountId> |
| new_nominator | ConfigOp<T::AccountId> |
| new_state_toggler | ConfigOp<T::AccountId> |
Python¶
call = substrate.compose_call(
'NominationPools', 'update_roles', {
'new_nominator': {
'Noop': None,
'Remove': None,
'Set': 'AccountId',
},
'new_root': {
'Noop': None,
'Remove': None,
'Set': 'AccountId',
},
'new_state_toggler': {
'Noop': None,
'Remove': None,
'Set': 'AccountId',
},
'pool_id': 'u32',
}
)
withdraw_unbonded¶
Withdraw unbonded funds from member_account. If no bonded funds can be unbonded, an
error is returned.
Under certain conditions, this call can be dispatched permissionlessly (i.e. by any account).
# Conditions for a permissionless dispatch
- The pool is in destroy mode and the target is not the depositor.
- The target is the depositor and they are the only member in the sub pools.
- The pool is blocked and the caller is either the root or state-toggler.
# Conditions for permissioned dispatch
- The caller is the target and they are not the depositor.
# Note
If the target is the depositor, the pool will be destroyed.
Attributes¶
| Name | Type |
|---|---|
| member_account | AccountIdLookupOf<T> |
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'NominationPools', 'withdraw_unbonded', {
'member_account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'num_slashing_spans': 'u32',
}
)
Events¶
Bonded¶
A member has became bonded in a pool.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
| pool_id | PoolId |
u32 |
| bonded | BalanceOf<T> |
u128 |
| joined | bool |
bool |
Created¶
A pool has been created.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| depositor | T::AccountId |
AccountId |
| pool_id | PoolId |
u32 |
Destroyed¶
A pool has been destroyed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pool_id | PoolId |
u32 |
MemberRemoved¶
A member has been removed from a pool.
The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pool_id | PoolId |
u32 |
| member | T::AccountId |
AccountId |
PaidOut¶
A payout has been made to a member.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
| pool_id | PoolId |
u32 |
| payout | BalanceOf<T> |
u128 |
PoolSlashed¶
The active balance of pool pool_id has been slashed to balance.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pool_id | PoolId |
u32 |
| balance | BalanceOf<T> |
u128 |
RolesUpdated¶
The roles of a pool have been updated to the given new roles. Note that the depositor can never change.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| root | Option<T::AccountId> |
(None, 'AccountId') |
| state_toggler | Option<T::AccountId> |
(None, 'AccountId') |
| nominator | Option<T::AccountId> |
(None, 'AccountId') |
StateChanged¶
The state of a pool has changed
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pool_id | PoolId |
u32 |
| new_state | PoolState |
('Open', 'Blocked', 'Destroying') |
Unbonded¶
A member has unbonded from their pool.
balanceis the corresponding balance of the number of points that has been requested to be unbonded (the argument of theunbondtransaction) from the bonded pool.pointsis the number of points that are issued as a result ofbalancebeing dissolved into the corresponding unbonding pool.erais the era in which the balance will be unbonded. In the absence of slashing, these values will match. In the presence of slashing, the number of points that are issued in the unbonding pool will be less than the amount requested to be unbonded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
| pool_id | PoolId |
u32 |
| balance | BalanceOf<T> |
u128 |
| points | BalanceOf<T> |
u128 |
| era | EraIndex |
u32 |
UnbondingPoolSlashed¶
The unbond pool at era of pool pool_id has been slashed to balance.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pool_id | PoolId |
u32 |
| era | EraIndex |
u32 |
| balance | BalanceOf<T> |
u128 |
Withdrawn¶
A member has withdrawn from their pool.
The given number of points have been dissolved in return of balance.
Similar to Unbonded event, in the absence of slashing, the ratio of point to balance
will be 1.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
| pool_id | PoolId |
u32 |
| balance | BalanceOf<T> |
u128 |
| points | BalanceOf<T> |
u128 |
Storage functions¶
BondedPools¶
Storage for bonded pools.
Python¶
result = substrate.query(
'NominationPools', 'BondedPools', ['u32']
)
Return value¶
{
'member_counter': 'u32',
'points': 'u128',
'roles': {
'depositor': 'AccountId',
'nominator': (None, 'AccountId'),
'root': (None, 'AccountId'),
'state_toggler': (None, 'AccountId'),
},
'state': ('Open', 'Blocked', 'Destroying'),
}
CounterForBondedPools¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForBondedPools', []
)
Return value¶
'u32'
CounterForMetadata¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForMetadata', []
)
Return value¶
'u32'
CounterForPoolMembers¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForPoolMembers', []
)
Return value¶
'u32'
CounterForReversePoolIdLookup¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForReversePoolIdLookup', []
)
Return value¶
'u32'
CounterForRewardPools¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForRewardPools', []
)
Return value¶
'u32'
CounterForSubPoolsStorage¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'NominationPools', 'CounterForSubPoolsStorage', []
)
Return value¶
'u32'
LastPoolId¶
Ever increasing number of all pools created so far.
Python¶
result = substrate.query(
'NominationPools', 'LastPoolId', []
)
Return value¶
'u32'
MaxPoolMembers¶
Maximum number of members that can exist in the system. If None, then the count
members are not bound on a system wide basis.
Python¶
result = substrate.query(
'NominationPools', 'MaxPoolMembers', []
)
Return value¶
'u32'
MaxPoolMembersPerPool¶
Maximum number of members that may belong to pool. If None, then the count of
members is not bound on a per pool basis.
Python¶
result = substrate.query(
'NominationPools', 'MaxPoolMembersPerPool', []
)
Return value¶
'u32'
MaxPools¶
Maximum number of nomination pools that can exist. If None, then an unbounded number of
pools can exist.
Python¶
result = substrate.query(
'NominationPools', 'MaxPools', []
)
Return value¶
'u32'
Metadata¶
Metadata for the pool.
Python¶
result = substrate.query(
'NominationPools', 'Metadata', ['u32']
)
Return value¶
'Bytes'
MinCreateBond¶
Minimum bond required to create a pool.
This is the amount that the depositor must put as their initial stake in the pool, as an indication of "skin in the game".
This is the value that will always exist in the staking ledger of the pool bonded account while all other accounts leave.
Python¶
result = substrate.query(
'NominationPools', 'MinCreateBond', []
)
Return value¶
'u128'
MinJoinBond¶
Minimum amount to bond to join a pool.
Python¶
result = substrate.query(
'NominationPools', 'MinJoinBond', []
)
Return value¶
'u128'
PoolMembers¶
Active members.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'NominationPools', 'PoolMembers', ['AccountId']
)
Return value¶
{
'last_recorded_reward_counter': 'u128',
'points': 'u128',
'pool_id': 'u32',
'unbonding_eras': 'scale_info::738',
}
ReversePoolIdLookup¶
A reverse lookup from the pool's account id to its id.
This is only used for slashing. In all other instances, the pool id is used, and the accounts are deterministically derived from it.
Python¶
result = substrate.query(
'NominationPools', 'ReversePoolIdLookup', ['AccountId']
)
Return value¶
'u32'
RewardPools¶
Reward pools. This is where there rewards for each pool accumulate. When a members payout is claimed, the balance comes out fo the reward pool. Keyed by the bonded pools account.
Python¶
result = substrate.query(
'NominationPools', 'RewardPools', ['u32']
)
Return value¶
{
'last_recorded_reward_counter': 'u128',
'last_recorded_total_payouts': 'u128',
'total_rewards_claimed': 'u128',
}
SubPoolsStorage¶
Groups of unbonding pools. Each group of unbonding pools belongs to a bonded pool, hence the name sub-pools. Keyed by the bonded pools account.
Python¶
result = substrate.query(
'NominationPools', 'SubPoolsStorage', ['u32']
)
Return value¶
{'no_era': {'balance': 'u128', 'points': 'u128'}, 'with_era': 'scale_info::745'}
Constants¶
MaxPointsToBalance¶
The maximum pool points-to-balance ratio that an open pool can have.
This is important in the event slashing takes place and the pool's points-to-balance ratio becomes disproportional.
Moreover, this relates to the RewardCounter type as well, as the arithmetic operations
are a function of number of points, and by setting this value to e.g. 10, you ensure
that the total number of points in the system are at most 10 times the total_issuance of
the chain, in the absolute worse case.
For a value of 10, the threshold would be a pool points-to-balance ratio of 10:1. Such a scenario would also be the equivalent of the pool being 90% slashed.
Value¶
10
Python¶
constant = substrate.get_constant('NominationPools', 'MaxPointsToBalance')
PalletId¶
The nomination pool's pallet id.
Value¶
'0x70792f6e6f706c73'
Python¶
constant = substrate.get_constant('NominationPools', 'PalletId')
Errors¶
AccountBelongsToOtherPool¶
An account is already delegating in another pool. An account may only belong to one pool at a time.
CanNotChangeState¶
The pools state cannot be changed.
CannotWithdrawAny¶
None of the funds can be withdrawn yet because the bonding duration has not passed.
Defensive¶
Some error occurred that should never happen. This should be reported to the maintainers.
DoesNotHavePermission¶
The caller does not have adequate permissions.
FullyUnbonding¶
The member is fully unbonded (and thus cannot access the bonded and reward pool anymore to, for example, collect rewards).
InvalidPoolId¶
Pool id provided is not correct/usable.
MaxPoolMembers¶
Too many members in the pool or system.
MaxPools¶
The system is maxed out on pools.
MaxUnbondingLimit¶
The member cannot unbond further chunks due to reaching the limit.
MetadataExceedsMaxLen¶
Metadata exceeds [Config::MaxMetadataLen]
MinimumBondNotMet¶
The amount does not meet the minimum bond to either join or create a pool.
The depositor can never unbond to a value less than
Pallet::depositor_min_bond. The caller does not have nominating
permissions for the pool. Members can never unbond to a value below MinJoinBond.
NotDestroying¶
A pool must be in [PoolState::Destroying] in order for the depositor to unbond or for
other members to be permissionlessly unbonded.
NotKickerOrDestroying¶
Either a) the caller cannot make a valid kick or b) the pool is not destroying.
NotNominator¶
The caller does not have nominating permissions for the pool.
NotOpen¶
The pool is not open to join
OverflowRisk¶
The transaction could not be executed due to overflow risk for the pool.
PartialUnbondNotAllowedPermissionlessly¶
Partial unbonding now allowed permissionlessly.
PoolIdInUse¶
Pool id currently in use.
PoolMemberNotFound¶
An account is not a member.
PoolNotFound¶
A (bonded) pool id does not exist.
RewardPoolNotFound¶
A reward pool does not exist. In all cases this is a system logic error.
SubPoolsNotFound¶
A sub pool does not exist.
Offences¶
Events¶
Offence¶
There is an offence reported of the given kind happened at the session_index and
(kind-specific) time slot. This event is not deposited for duplicate slashes.
[kind, timeslot].
Attributes¶
| Name | Type | Composition |
|---|---|---|
| kind | Kind |
[u8; 16] |
| timeslot | OpaqueTimeSlot |
Bytes |
Storage functions¶
ConcurrentReportsIndex¶
A vector of reports of the same kind that happened at the same time slot.
Python¶
result = substrate.query(
'Offences', 'ConcurrentReportsIndex', ['[u8; 16]', 'Bytes']
)
Return value¶
['[u8; 32]']
Reports¶
The primary structure that holds all offence records keyed by report identifiers.
Python¶
result = substrate.query(
'Offences', 'Reports', ['[u8; 32]']
)
Return value¶
{
'offender': (
'AccountId',
{'others': [{'value': 'u128', 'who': 'AccountId'}], 'own': 'u128', 'total': 'u128'},
),
'reporters': ['AccountId'],
}
ReportsByKindIndex¶
Enumerates all reports of a kind along with the time they happened.
All reports are sorted by the time of offence.
Note that the actual type of this mapping is Vec<u8>, this is because values of
different types are not supported at the moment so we are doing the manual serialization.
Python¶
result = substrate.query(
'Offences', 'ReportsByKindIndex', ['[u8; 16]']
)
Return value¶
'Bytes'
ParaInclusion¶
Events¶
CandidateBacked¶
A candidate was backed. [candidate, head_data]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateReceipt<T::Hash> |
{'descriptor': {'para_id': 'u32', 'relay_parent': '[u8; 32]', 'collator': '[u8; 32]', 'persisted_validation_data_hash': '[u8; 32]', 'pov_hash': '[u8; 32]', 'erasure_root': '[u8; 32]', 'signature': '[u8; 64]', 'para_head': '[u8; 32]', 'validation_code_hash': '[u8; 32]'}, 'commitments_hash': '[u8; 32]'} |
| None | HeadData |
Bytes |
| None | CoreIndex |
u32 |
| None | GroupIndex |
u32 |
CandidateIncluded¶
A candidate was included. [candidate, head_data]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateReceipt<T::Hash> |
{'descriptor': {'para_id': 'u32', 'relay_parent': '[u8; 32]', 'collator': '[u8; 32]', 'persisted_validation_data_hash': '[u8; 32]', 'pov_hash': '[u8; 32]', 'erasure_root': '[u8; 32]', 'signature': '[u8; 64]', 'para_head': '[u8; 32]', 'validation_code_hash': '[u8; 32]'}, 'commitments_hash': '[u8; 32]'} |
| None | HeadData |
Bytes |
| None | CoreIndex |
u32 |
| None | GroupIndex |
u32 |
CandidateTimedOut¶
A candidate timed out. [candidate, head_data]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateReceipt<T::Hash> |
{'descriptor': {'para_id': 'u32', 'relay_parent': '[u8; 32]', 'collator': '[u8; 32]', 'persisted_validation_data_hash': '[u8; 32]', 'pov_hash': '[u8; 32]', 'erasure_root': '[u8; 32]', 'signature': '[u8; 64]', 'para_head': '[u8; 32]', 'validation_code_hash': '[u8; 32]'}, 'commitments_hash': '[u8; 32]'} |
| None | HeadData |
Bytes |
| None | CoreIndex |
u32 |
Storage functions¶
AvailabilityBitfields¶
The latest bitfield for each validator, referred to by their index in the validator set.
Python¶
result = substrate.query(
'ParaInclusion', 'AvailabilityBitfields', ['u32']
)
Return value¶
{'bitfield': 'BitVec', 'submitted_at': 'u32'}
PendingAvailability¶
Candidates pending availability by ParaId.
Python¶
result = substrate.query(
'ParaInclusion', 'PendingAvailability', ['u32']
)
Return value¶
{
'availability_votes': 'BitVec',
'backed_in_number': 'u32',
'backers': 'BitVec',
'backing_group': 'u32',
'core': 'u32',
'descriptor': {
'collator': '[u8; 32]',
'erasure_root': '[u8; 32]',
'para_head': '[u8; 32]',
'para_id': 'u32',
'persisted_validation_data_hash': '[u8; 32]',
'pov_hash': '[u8; 32]',
'relay_parent': '[u8; 32]',
'signature': '[u8; 64]',
'validation_code_hash': '[u8; 32]',
},
'hash': '[u8; 32]',
'relay_parent_number': 'u32',
}
PendingAvailabilityCommitments¶
The commitments of candidates pending availability, by ParaId.
Python¶
result = substrate.query(
'ParaInclusion', 'PendingAvailabilityCommitments', ['u32']
)
Return value¶
{
'head_data': 'Bytes',
'horizontal_messages': [{'data': 'Bytes', 'recipient': 'u32'}],
'hrmp_watermark': 'u32',
'new_validation_code': (None, 'Bytes'),
'processed_downward_messages': 'u32',
'upward_messages': ['Bytes'],
}
Errors¶
BitfieldAllZeros¶
Bitfield consists of zeros only.
BitfieldDuplicateOrUnordered¶
Multiple bitfields submitted by same validator or validators out of order by index.
BitfieldReferencesFreedCore¶
A bitfield that references a freed core, either intentionally or as part of a concluded invalid dispute.
CandidateNotInParentContext¶
Candidate not in parent context.
CandidateScheduledBeforeParaFree¶
Candidate scheduled despite pending candidate already existing for the para.
HeadDataTooLarge¶
Head data exceeds the configured maximum.
HrmpWatermarkMishandling¶
The candidate didn't follow the rules of HRMP watermark advancement.
IncorrectDownwardMessageHandling¶
The downward message queue is not processed correctly.
InsufficientBacking¶
Insufficient (non-majority) backing.
InvalidBacking¶
Invalid (bad signature, unknown validator, etc.) backing.
InvalidBitfieldSignature¶
Invalid signature
InvalidGroupIndex¶
Invalid group index in core assignment.
InvalidOutboundHrmp¶
The HRMP messages sent by the candidate is not valid.
InvalidUpwardMessages¶
At least one upward message sent does not pass the acceptance criteria.
InvalidValidationCodeHash¶
The validation code hash of the candidate is not valid.
NewCodeTooLarge¶
Output code is too large
NotCollatorSigned¶
Collator did not sign PoV.
ParaHeadMismatch¶
The para_head hash in the candidate descriptor doesn't match the hash of the actual para head in the
commitments.
PrematureCodeUpgrade¶
Code upgrade prematurely.
ScheduledOutOfOrder¶
Scheduled cores out of order.
UnexpectedRelayParent¶
A different relay parent was provided compared to the on-chain stored one.
UnscheduledCandidate¶
Candidate submitted but para not scheduled.
UnsortedOrDuplicateBackedCandidates¶
Backed candidates are out of order (core index) or contain duplicates.
UnsortedOrDuplicateDisputeStatementSet¶
Dispute statement sets are out of order or contain duplicates.
UnsortedOrDuplicateValidatorIndices¶
Validator indices are out of order or contains duplicates.
ValidationDataHashMismatch¶
The validation data hash does not match expected.
ValidatorIndexOutOfBounds¶
Validator index out of bounds.
WrongBitfieldSize¶
Availability bitfield has unexpected size.
WrongCollator¶
Candidate included with the wrong collator.
ParaInherent¶
Calls¶
enter¶
Enter the paras inherent. This will process bitfields and backed candidates.
Attributes¶
| Name | Type |
|---|---|
| data | ParachainsInherentData<T::Header> |
Python¶
call = substrate.compose_call(
'ParaInherent', 'enter', {
'data': {
'backed_candidates': [
{
'candidate': {
'commitments': {
'head_data': 'Bytes',
'horizontal_messages': [
'scale_info::354',
],
'hrmp_watermark': 'u32',
'new_validation_code': (
None,
'Bytes',
),
'processed_downward_messages': 'u32',
'upward_messages': [
'Bytes',
],
},
'descriptor': {
'collator': '[u8; 32]',
'erasure_root': '[u8; 32]',
'para_head': '[u8; 32]',
'para_id': 'u32',
'persisted_validation_data_hash': '[u8; 32]',
'pov_hash': '[u8; 32]',
'relay_parent': '[u8; 32]',
'signature': '[u8; 64]',
'validation_code_hash': '[u8; 32]',
},
},
'validator_indices': 'BitVec',
'validity_votes': [
{
None: None,
'Explicit': '[u8; 64]',
'Implicit': '[u8; 64]',
},
],
},
],
'bitfields': [
{
'payload': 'BitVec',
'signature': '[u8; 64]',
'validator_index': 'u32',
},
],
'disputes': [
{
'candidate_hash': '[u8; 32]',
'session': 'u32',
'statements': [
(
{
'Invalid': 'scale_info::367',
'Valid': 'scale_info::366',
},
'u32',
'[u8; 64]',
),
],
},
],
'parent_header': {
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
},
}
)
Storage functions¶
Included¶
Whether the paras inherent was included within this block.
The Option<()> is effectively a bool, but it never hits storage in the None variant
due to the guarantees of FRAME's storage APIs.
If this is None at the end of the block, we panic and render the block invalid.
Python¶
result = substrate.query(
'ParaInherent', 'Included', []
)
Return value¶
()
OnChainVotes¶
Scraped on chain data for extracting resolved disputes as well as backing votes.
Python¶
result = substrate.query(
'ParaInherent', 'OnChainVotes', []
)
Return value¶
{
'backing_validators_per_candidate': [
(
{
'commitments_hash': '[u8; 32]',
'descriptor': {
'collator': '[u8; 32]',
'erasure_root': '[u8; 32]',
'para_head': '[u8; 32]',
'para_id': 'u32',
'persisted_validation_data_hash': '[u8; 32]',
'pov_hash': '[u8; 32]',
'relay_parent': '[u8; 32]',
'signature': '[u8; 64]',
'validation_code_hash': '[u8; 32]',
},
},
[('u32', 'scale_info::359')],
),
],
'disputes': [
{
'candidate_hash': '[u8; 32]',
'session': 'u32',
'statements': [('scale_info::365', 'u32', '[u8; 64]')],
},
],
'session': 'u32',
}
Errors¶
CandidateConcludedInvalid¶
Disputed candidate that was concluded invalid.
DisputeInvalid¶
A dispute statement was invalid.
DisputeStatementsUnsortedOrDuplicates¶
The ordering of dispute statements was invalid.
InherentOverweight¶
The data given to the inherent will result in an overweight block.
InvalidParentHeader¶
The hash of the submitted parent header doesn't correspond to the saved block hash of the parent.
TooManyInclusionInherents¶
Inclusion inherent called more than once per block.
ParaScheduler¶
Storage functions¶
AvailabilityCores¶
One entry for each availability core. Entries are None if the core is not currently occupied. Can be
temporarily Some if scheduled but not occupied.
The i'th parachain belongs to the i'th core, with the remaining cores all being
parathread-multiplexers.
Bounded by the maximum of either of these two values:
* The number of parachains and parathread multiplexers
* The number of validators divided by configuration.max_validators_per_core.
Python¶
result = substrate.query(
'ParaScheduler', 'AvailabilityCores', []
)
Return value¶
[
(
None,
{
'Parachain': None,
'Parathread': {'claim': ('u32', '[u8; 32]'), 'retries': 'u32'},
},
),
]
ParathreadClaimIndex¶
An index used to ensure that only one claim on a parathread exists in the queue or is currently being handled by an occupied core.
Bounded by the number of parathread cores and scheduling lookahead. Reasonably, 10 * 50 = 500.
Python¶
result = substrate.query(
'ParaScheduler', 'ParathreadClaimIndex', []
)
Return value¶
['u32']
ParathreadQueue¶
A queue of upcoming claims and which core they should be mapped onto.
The number of queued claims is bounded at the scheduling_lookahead
multiplied by the number of parathread multiplexer cores. Reasonably, 10 * 50 = 500.
Python¶
result = substrate.query(
'ParaScheduler', 'ParathreadQueue', []
)
Return value¶
{
'next_core_offset': 'u32',
'queue': [
{'claim': {'claim': ('u32', '[u8; 32]'), 'retries': 'u32'}, 'core_offset': 'u32'},
],
}
Scheduled¶
Currently scheduled cores - free but up to be occupied.
Bounded by the number of cores: one for each parachain and parathread multiplexer.
The value contained here will not be valid after the end of a block. Runtime APIs should be used to determine scheduled cores/ for the upcoming block.
Python¶
result = substrate.query(
'ParaScheduler', 'Scheduled', []
)
Return value¶
[
{
'core': 'u32',
'group_idx': 'u32',
'kind': {'Parachain': None, 'Parathread': ('[u8; 32]', 'u32')},
'para_id': 'u32',
},
]
SessionStartBlock¶
The block number where the session start occurred. Used to track how many group rotations have occurred.
Note that in the context of parachains modules the session change is signaled during the block and enacted at the end of the block (at the finalization stage, to be exact). Thus for all intents and purposes the effect of the session change is observed at the block following the session change, block number of which we save in this storage value.
Python¶
result = substrate.query(
'ParaScheduler', 'SessionStartBlock', []
)
Return value¶
'u32'
ValidatorGroups¶
All the validator groups. One for each core. Indices are into ActiveValidators - not the
broader set of Polkadot validators, but instead just the subset used for parachains during
this session.
Bound: The number of cores is the sum of the numbers of parachains and parathread multiplexers. Reasonably, 100-1000. The dominant factor is the number of validators: safe upper bound at 10k.
Python¶
result = substrate.query(
'ParaScheduler', 'ValidatorGroups', []
)
Return value¶
[['u32']]
ParaSessionInfo¶
Storage functions¶
AccountKeys¶
The validator account keys of the validators actively participating in parachain consensus.
Python¶
result = substrate.query(
'ParaSessionInfo', 'AccountKeys', ['u32']
)
Return value¶
['AccountId']
AssignmentKeysUnsafe¶
Assignment keys for the current session.
Note that this API is private due to it being prone to 'off-by-one' at session boundaries.
When in doubt, use Sessions API instead.
Python¶
result = substrate.query(
'ParaSessionInfo', 'AssignmentKeysUnsafe', []
)
Return value¶
['[u8; 32]']
EarliestStoredSession¶
The earliest session for which previous session info is stored.
Python¶
result = substrate.query(
'ParaSessionInfo', 'EarliestStoredSession', []
)
Return value¶
'u32'
Sessions¶
Session information in a rolling window.
Should have an entry in range EarliestStoredSession..=CurrentSessionIndex.
Does not have any entries before the session index in the first session change notification.
Python¶
result = substrate.query(
'ParaSessionInfo', 'Sessions', ['u32']
)
Return value¶
{
'active_validator_indices': ['u32'],
'assignment_keys': ['[u8; 32]'],
'discovery_keys': ['[u8; 32]'],
'dispute_period': 'u32',
'n_cores': 'u32',
'n_delay_tranches': 'u32',
'needed_approvals': 'u32',
'no_show_slots': 'u32',
'random_seed': '[u8; 32]',
'relay_vrf_modulo_samples': 'u32',
'validator_groups': [['u32']],
'validators': ['[u8; 32]'],
'zeroth_delay_tranche_width': 'u32',
}
ParachainsOrigin¶
Paras¶
Calls¶
add_trusted_validation_code¶
Adds the validation code to the storage.
The code will not be added if it is already present. Additionally, if PVF pre-checking is running for that code, it will be instantly accepted.
Otherwise, the code will be added into the storage. Note that the code will be added
into storage with reference count 0. This is to account the fact that there are no users
for this code yet. The caller will have to make sure that this code eventually gets
used by some parachain or removed from the storage to avoid storage leaks. For the latter
prefer to use the poke_unused_validation_code dispatchable to raw storage manipulation.
This function is mainly meant to be used for upgrading parachains that do not follow the go-ahead signal while the PVF pre-checking feature is enabled.
Attributes¶
| Name | Type |
|---|---|
| validation_code | ValidationCode |
Python¶
call = substrate.compose_call(
'Paras', 'add_trusted_validation_code', {'validation_code': 'Bytes'}
)
force_note_new_head¶
Note a new block head for para within the context of the current block.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_head | HeadData |
Python¶
call = substrate.compose_call(
'Paras', 'force_note_new_head', {'new_head': 'Bytes', 'para': 'u32'}
)
force_queue_action¶
Put a parachain directly into the next session's action queue. We can't queue it any sooner than this without going into the initializer...
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
Python¶
call = substrate.compose_call(
'Paras', 'force_queue_action', {'para': 'u32'}
)
force_schedule_code_upgrade¶
Schedule an upgrade as if it was scheduled in the given relay parent block.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_code | ValidationCode |
| relay_parent_number | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Paras', 'force_schedule_code_upgrade', {
'new_code': 'Bytes',
'para': 'u32',
'relay_parent_number': 'u32',
}
)
force_set_current_code¶
Set the storage for the parachain validation code immediately.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_code | ValidationCode |
Python¶
call = substrate.compose_call(
'Paras', 'force_set_current_code', {'new_code': 'Bytes', 'para': 'u32'}
)
force_set_current_head¶
Set the storage for the current parachain head data immediately.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_head | HeadData |
Python¶
call = substrate.compose_call(
'Paras', 'force_set_current_head', {'new_head': 'Bytes', 'para': 'u32'}
)
include_pvf_check_statement¶
Includes a statement for a PVF pre-checking vote. Potentially, finalizes the vote and enacts the results if that was the last vote before achieving the supermajority.
Attributes¶
| Name | Type |
|---|---|
| stmt | PvfCheckStatement |
| signature | ValidatorSignature |
Python¶
call = substrate.compose_call(
'Paras', 'include_pvf_check_statement', {
'signature': '[u8; 64]',
'stmt': {
'accept': 'bool',
'session_index': 'u32',
'subject': '[u8; 32]',
'validator_index': 'u32',
},
}
)
poke_unused_validation_code¶
Remove the validation code from the storage iff the reference count is 0.
This is better than removing the storage directly, because it will not remove the code that was suddenly got used by some parachain while this dispatchable was pending dispatching.
Attributes¶
| Name | Type |
|---|---|
| validation_code_hash | ValidationCodeHash |
Python¶
call = substrate.compose_call(
'Paras', 'poke_unused_validation_code', {'validation_code_hash': '[u8; 32]'}
)
Events¶
ActionQueued¶
A para has been queued to execute pending actions. para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | SessionIndex |
u32 |
CodeUpgradeScheduled¶
A code upgrade has been scheduled for a Para. para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
CurrentCodeUpdated¶
Current code has been updated for a Para. para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
CurrentHeadUpdated¶
Current head has been updated for a Para. para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
NewHeadNoted¶
A new head has been noted for a Para. para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
PvfCheckAccepted¶
The given validation code was accepted by the PVF pre-checking vote.
code_hash para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ValidationCodeHash |
[u8; 32] |
| None | ParaId |
u32 |
PvfCheckRejected¶
The given validation code was rejected by the PVF pre-checking vote.
code_hash para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ValidationCodeHash |
[u8; 32] |
| None | ParaId |
u32 |
PvfCheckStarted¶
The given para either initiated or subscribed to a PVF check for the given validation
code. code_hash para_id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ValidationCodeHash |
[u8; 32] |
| None | ParaId |
u32 |
Storage functions¶
ActionsQueue¶
The actions to perform during the start of a specific session index.
Python¶
result = substrate.query(
'Paras', 'ActionsQueue', ['u32']
)
Return value¶
['u32']
CodeByHash¶
Validation code stored by its hash.
This storage is consistent with [FutureCodeHash], [CurrentCodeHash] and
[PastCodeHash].
Python¶
result = substrate.query(
'Paras', 'CodeByHash', ['[u8; 32]']
)
Return value¶
'Bytes'
CodeByHashRefs¶
The number of reference on the validation code in [CodeByHash] storage.
Python¶
result = substrate.query(
'Paras', 'CodeByHashRefs', ['[u8; 32]']
)
Return value¶
'u32'
CurrentCodeHash¶
The validation code hash of every live para.
Corresponding code can be retrieved with [CodeByHash].
Python¶
result = substrate.query(
'Paras', 'CurrentCodeHash', ['u32']
)
Return value¶
'[u8; 32]'
FutureCodeHash¶
The actual future code hash of a para.
Corresponding code can be retrieved with [CodeByHash].
Python¶
result = substrate.query(
'Paras', 'FutureCodeHash', ['u32']
)
Return value¶
'[u8; 32]'
FutureCodeUpgrades¶
The block number at which the planned code change is expected for a para.
The change will be applied after the first parablock for this ID included which executes
in the context of a relay chain block with a number >= expected_at.
Python¶
result = substrate.query(
'Paras', 'FutureCodeUpgrades', ['u32']
)
Return value¶
'u32'
Heads¶
The head-data of every registered para.
Python¶
result = substrate.query(
'Paras', 'Heads', ['u32']
)
Return value¶
'Bytes'
ParaLifecycles¶
The current lifecycle of a all known Para IDs.
Python¶
result = substrate.query(
'Paras', 'ParaLifecycles', ['u32']
)
Return value¶
(
'Onboarding',
'Parathread',
'Parachain',
'UpgradingParathread',
'DowngradingParachain',
'OffboardingParathread',
'OffboardingParachain',
)
Parachains¶
All parachains. Ordered ascending by ParaId. Parathreads are not included.
Consider using the [ParachainsCache] type of modifying.
Python¶
result = substrate.query(
'Paras', 'Parachains', []
)
Return value¶
['u32']
PastCodeHash¶
Actual past code hash, indicated by the para id as well as the block number at which it became outdated.
Corresponding code can be retrieved with [CodeByHash].
Python¶
result = substrate.query(
'Paras', 'PastCodeHash', [('u32', 'u32')]
)
Return value¶
'[u8; 32]'
PastCodeMeta¶
Past code of parachains. The parachains themselves may not be registered anymore, but we also keep their code on-chain for the same amount of time as outdated code to keep it available for approval checkers.
Python¶
result = substrate.query(
'Paras', 'PastCodeMeta', ['u32']
)
Return value¶
{
'last_pruned': (None, 'u32'),
'upgrade_times': [{'activated_at': 'u32', 'expected_at': 'u32'}],
}
PastCodePruning¶
Which paras have past code that needs pruning and the relay-chain block at which the code was replaced. Note that this is the actual height of the included block, not the expected height at which the code upgrade would be applied, although they may be equal. This is to ensure the entire acceptance period is covered, not an offset acceptance period starting from the time at which the parachain perceives a code upgrade as having occurred. Multiple entries for a single para are permitted. Ordered ascending by block number.
Python¶
result = substrate.query(
'Paras', 'PastCodePruning', []
)
Return value¶
[('u32', 'u32')]
PvfActiveVoteList¶
The list of all currently active PVF votes. Auxiliary to PvfActiveVoteMap.
Python¶
result = substrate.query(
'Paras', 'PvfActiveVoteList', []
)
Return value¶
['[u8; 32]']
PvfActiveVoteMap¶
All currently active PVF pre-checking votes.
Invariant: - There are no PVF pre-checking votes that exists in list but not in the set and vice versa.
Python¶
result = substrate.query(
'Paras', 'PvfActiveVoteMap', ['[u8; 32]']
)
Return value¶
{
'age': 'u32',
'causes': [
{
'Onboarding': 'u32',
'Upgrade': {'id': 'u32', 'relay_parent_number': 'u32'},
},
],
'created_at': 'u32',
'votes_accept': 'BitVec',
'votes_reject': 'BitVec',
}
UpcomingParasGenesis¶
Upcoming paras instantiation arguments.
NOTE that after PVF pre-checking is enabled the para genesis arg will have it's code set
to empty. Instead, the code will be saved into the storage right away via CodeByHash.
Python¶
result = substrate.query(
'Paras', 'UpcomingParasGenesis', ['u32']
)
Return value¶
{'genesis_head': 'Bytes', 'para_kind': 'bool', 'validation_code': 'Bytes'}
UpcomingUpgrades¶
The list of upcoming code upgrades. Each item is a pair of which para performs a code upgrade and at which relay-chain block it is expected at.
Ordered ascending by block number.
Python¶
result = substrate.query(
'Paras', 'UpcomingUpgrades', []
)
Return value¶
[('u32', 'u32')]
UpgradeCooldowns¶
The list of parachains that are awaiting for their upgrade restriction to cooldown.
Ordered ascending by block number.
Python¶
result = substrate.query(
'Paras', 'UpgradeCooldowns', []
)
Return value¶
[('u32', 'u32')]
UpgradeGoAheadSignal¶
This is used by the relay-chain to communicate to a parachain a go-ahead with in the upgrade procedure.
This value is absent when there are no upgrades scheduled or during the time the relay chain
performs the checks. It is set at the first relay-chain block when the corresponding parachain
can switch its upgrade function. As soon as the parachain's block is included, the value
gets reset to None.
NOTE that this field is used by parachains via merkle storage proofs, therefore changing the format will require migration of parachains.
Python¶
result = substrate.query(
'Paras', 'UpgradeGoAheadSignal', ['u32']
)
Return value¶
('Abort', 'GoAhead')
UpgradeRestrictionSignal¶
This is used by the relay-chain to communicate that there are restrictions for performing an upgrade for this parachain.
This may be a because the parachain waits for the upgrade cooldown to expire. Another potential use case is when we want to perform some maintenance (such as storage migration) we could restrict upgrades to make the process simpler.
NOTE that this field is used by parachains via merkle storage proofs, therefore changing the format will require migration of parachains.
Python¶
result = substrate.query(
'Paras', 'UpgradeRestrictionSignal', ['u32']
)
Return value¶
('Present', )
Constants¶
UnsignedPriority¶
Value¶
18446744073709551615
Python¶
constant = substrate.get_constant('Paras', 'UnsignedPriority')
Errors¶
CannotDowngrade¶
Para cannot be downgraded to a parathread.
CannotOffboard¶
Para cannot be offboarded at this time.
CannotOnboard¶
Para cannot be onboarded because it is already tracked by our system.
CannotUpgrade¶
Para cannot be upgraded to a parachain.
CannotUpgradeCode¶
Parachain cannot currently schedule a code upgrade.
NotRegistered¶
Para is not registered in our system.
PvfCheckDisabled¶
The PVF pre-checking statement cannot be included since the PVF pre-checking mechanism is disabled.
PvfCheckDoubleVote¶
The given validator already has cast a vote.
PvfCheckInvalidSignature¶
The signature for the PVF pre-checking is invalid.
PvfCheckStatementFuture¶
The statement for PVF pre-checking is for a future session.
PvfCheckStatementStale¶
The statement for PVF pre-checking is stale.
PvfCheckSubjectInvalid¶
The given PVF does not exist at the moment of process a vote.
PvfCheckValidatorIndexOutOfBounds¶
Claimed validator index is out of bounds.
ParasDisputes¶
Calls¶
force_unfreeze¶
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'ParasDisputes', 'force_unfreeze', {}
)
Events¶
DisputeConcluded¶
A dispute has concluded for or against a candidate.
\[para id, candidate hash, dispute result\]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateHash |
[u8; 32] |
| None | DisputeResult |
('Valid', 'Invalid') |
DisputeInitiated¶
A dispute has been initiated. [candidate hash, dispute location]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateHash |
[u8; 32] |
| None | DisputeLocation |
('Local', 'Remote') |
DisputeTimedOut¶
A dispute has timed out due to insufficient participation.
\[para id, candidate hash\]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CandidateHash |
[u8; 32] |
Revert¶
A dispute has concluded with supermajority against a candidate. Block authors should no longer build on top of this head and should instead revert the block at the given height. This should be the number of the child of the last known valid block in the chain.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::BlockNumber |
u32 |
Storage functions¶
Disputes¶
All ongoing or concluded disputes for the last several sessions.
Python¶
result = substrate.query(
'ParasDisputes', 'Disputes', ['u32', '[u8; 32]']
)
Return value¶
{
'concluded_at': (None, 'u32'),
'start': 'u32',
'validators_against': 'BitVec',
'validators_for': 'BitVec',
}
Frozen¶
Whether the chain is frozen. Starts as None. When this is Some,
the chain will not accept any new parachain blocks for backing or inclusion,
and its value indicates the last valid block number in the chain.
It can only be set back to None by governance intervention.
Python¶
result = substrate.query(
'ParasDisputes', 'Frozen', []
)
Return value¶
(None, 'u32')
Included¶
All included blocks on the chain, as well as the block number in this chain that should be reverted back to if the candidate is disputed and determined to be invalid.
Python¶
result = substrate.query(
'ParasDisputes', 'Included', ['u32', '[u8; 32]']
)
Return value¶
'u32'
LastPrunedSession¶
The last pruned session, if any. All data stored by this module references sessions.
Python¶
result = substrate.query(
'ParasDisputes', 'LastPrunedSession', []
)
Return value¶
'u32'
Errors¶
AncientDisputeStatement¶
Ancient dispute statement provided.
DuplicateDisputeStatementSets¶
Duplicate dispute statement sets provided.
DuplicateStatement¶
Validator vote submitted more than once to dispute.
InvalidSignature¶
Invalid signature on statement.
SingleSidedDispute¶
A dispute where there are only votes on one side.
UnconfirmedDispute¶
Unconfirmed dispute statement sets provided
ValidatorIndexOutOfBounds¶
Validator index on statement is out of bounds for session.
ParasShared¶
Storage functions¶
ActiveValidatorIndices¶
All the validators actively participating in parachain consensus. Indices are into the broader validator set.
Python¶
result = substrate.query(
'ParasShared', 'ActiveValidatorIndices', []
)
Return value¶
['u32']
ActiveValidatorKeys¶
The parachain attestation keys of the validators actively participating in parachain consensus.
This should be the same length as ActiveValidatorIndices.
Python¶
result = substrate.query(
'ParasShared', 'ActiveValidatorKeys', []
)
Return value¶
['[u8; 32]']
CurrentSessionIndex¶
The current session index.
Python¶
result = substrate.query(
'ParasShared', 'CurrentSessionIndex', []
)
Return value¶
'u32'
PhragmenElection¶
Calls¶
clean_defunct_voters¶
Clean all voters who are defunct (i.e. they do not serve any purpose at all). The deposit of the removed voters are returned.
This is an root function to be used only for cleaning the state.
The dispatch origin of this call must be root.
# <weight> The total number of voters and those that are defunct must be provided as witness data. # </weight>
Attributes¶
| Name | Type |
|---|---|
| num_voters | u32 |
| num_defunct | u32 |
Python¶
call = substrate.compose_call(
'PhragmenElection', 'clean_defunct_voters', {
'num_defunct': 'u32',
'num_voters': 'u32',
}
)
remove_member¶
Remove a particular member from the set. This is effective immediately and the bond of the outgoing member is slashed.
If a runner-up is available, then the best runner-up will be removed and replaces the
outgoing member. Otherwise, if rerun_election is true, a new phragmen election is
started, else, nothing happens.
If slash_bond is set to true, the bond of the member being removed is slashed. Else,
it is returned.
The dispatch origin of this call must be root.
Note that this does not affect the designated block number of the next election.
# <weight> If we have a replacement, we use a small weight. Else, since this is a root call and will go into phragmen, we assume full block for now. # </weight>
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| slash_bond | bool |
| rerun_election | bool |
Python¶
call = substrate.compose_call(
'PhragmenElection', 'remove_member', {
'rerun_election': 'bool',
'slash_bond': 'bool',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_voter¶
Remove origin as a voter.
This removes the lock and returns the deposit.
The dispatch origin of this call must be signed and be a voter.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'PhragmenElection', 'remove_voter', {}
)
renounce_candidacy¶
Renounce one's intention to be a candidate for the next election round. 3 potential outcomes exist:
originis a candidate and not elected in any set. In this case, the deposit is unreserved, returned and origin is removed as a candidate.originis a current runner-up. In this case, the deposit is unreserved, returned and origin is removed as a runner-up.originis a current member. In this case, the deposit is unreserved and origin is removed as a member, consequently not being a candidate for the next round anymore. Similar toremove_member, if replacement runners exists, they are immediately used. If the prime is renouncing, then no prime will exist until the next round.
The dispatch origin of this call must be signed, and have one of the above roles.
# <weight> The type of renouncing must be provided as witness data. # </weight>
Attributes¶
| Name | Type |
|---|---|
| renouncing | Renouncing |
Python¶
call = substrate.compose_call(
'PhragmenElection', 'renounce_candidacy', {
'renouncing': {
'Candidate': 'u32',
'Member': None,
'RunnerUp': None,
},
}
)
submit_candidacy¶
Submit oneself for candidacy. A fixed amount of deposit is recorded.
All candidates are wiped at the end of the term. They either become a member/runner-up, or leave the system while their deposit is slashed.
The dispatch origin of this call must be signed.
### Warning
Even if a candidate ends up being a member, they must call [Call::renounce_candidacy]
to get their deposit back. Losing the spot in an election will always lead to a slash.
# <weight> The number of current candidates must be provided as witness data. # </weight>
Attributes¶
| Name | Type |
|---|---|
| candidate_count | u32 |
Python¶
call = substrate.compose_call(
'PhragmenElection', 'submit_candidacy', {'candidate_count': 'u32'}
)
vote¶
Vote for a set of candidates for the upcoming round of election. This can be called to set the initial votes, or update already existing votes.
Upon initial voting, value units of who's balance is locked and a deposit amount is
reserved. The deposit is based on the number of votes and can be updated over time.
The votes should:
- not be empty.
- be less than the number of possible candidates. Note that all current members and
runners-up are also automatically candidates for the next round.
If value is more than who's free balance, then the maximum of the two is used.
The dispatch origin of this call must be signed.
### Warning
It is the responsibility of the caller to NOT place all of their balance into the lock and keep some for further operations.
# <weight> We assume the maximum weight among all 3 cases: vote_equal, vote_more and vote_less. # </weight>
Attributes¶
| Name | Type |
|---|---|
| votes | Vec<T::AccountId> |
| value | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'PhragmenElection', 'vote', {
'value': 'u128',
'votes': ['AccountId'],
}
)
Events¶
CandidateSlashed¶
A candidate was slashed by amount due to failing to obtain a seat as member or runner-up.
Note that old members and runners-up are also candidates.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | <T as frame_system::Config>::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
ElectionError¶
Internal error happened while trying to perform election.
Attributes¶
No attributes
EmptyTerm¶
No (or not enough) candidates existed for this round. This is different from
NewTerm(\[\]). See the description of NewTerm.
Attributes¶
No attributes
MemberKicked¶
A member has been removed. This should always be followed by either NewTerm or
EmptyTerm.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | <T as frame_system::Config>::AccountId |
AccountId |
NewTerm¶
A new term with new_members. This indicates that enough candidates existed to run
the election, not that enough have has been elected. The inner value must be examined
for this purpose. A NewTerm(\[\]) indicates that some candidates got their bond
slashed and none were elected, whilst EmptyTerm means that no candidates existed to
begin with.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| new_members | Vec<(<T as frame_system::Config>::AccountId, BalanceOf<T>)> |
[('AccountId', 'u128')] |
Renounced¶
Someone has renounced their candidacy.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | <T as frame_system::Config>::AccountId |
AccountId |
SeatHolderSlashed¶
A seat holder was slashed by amount by being forcefully removed from the set.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| seat_holder | <T as frame_system::Config>::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Storage functions¶
Candidates¶
The present candidate list. A current member or runner-up can never enter this vector and is always implicitly assumed to be a candidate.
Second element is the deposit.
Invariant: Always sorted based on account id.
Python¶
result = substrate.query(
'PhragmenElection', 'Candidates', []
)
Return value¶
[('AccountId', 'u128')]
ElectionRounds¶
The total number of vote rounds that have happened, excluding the upcoming one.
Python¶
result = substrate.query(
'PhragmenElection', 'ElectionRounds', []
)
Return value¶
'u32'
Members¶
The current elected members.
Invariant: Always sorted based on account id.
Python¶
result = substrate.query(
'PhragmenElection', 'Members', []
)
Return value¶
[{'deposit': 'u128', 'stake': 'u128', 'who': 'AccountId'}]
RunnersUp¶
The current reserved runners-up.
Invariant: Always sorted based on rank (worse to best). Upon removal of a member, the last (i.e. best) runner-up will be replaced.
Python¶
result = substrate.query(
'PhragmenElection', 'RunnersUp', []
)
Return value¶
[{'deposit': 'u128', 'stake': 'u128', 'who': 'AccountId'}]
Voting¶
Votes and locked stake of a particular voter.
TWOX-NOTE: SAFE as AccountId is a crypto hash.
Python¶
result = substrate.query(
'PhragmenElection', 'Voting', ['AccountId']
)
Return value¶
{'deposit': 'u128', 'stake': 'u128', 'votes': ['AccountId']}
Constants¶
CandidacyBond¶
How much should be locked up in order to submit one's candidacy.
Value¶
33333333300
Python¶
constant = substrate.get_constant('PhragmenElection', 'CandidacyBond')
DesiredMembers¶
Number of members to elect.
Value¶
19
Python¶
constant = substrate.get_constant('PhragmenElection', 'DesiredMembers')
DesiredRunnersUp¶
Number of runners_up to keep.
Value¶
19
Python¶
constant = substrate.get_constant('PhragmenElection', 'DesiredRunnersUp')
MaxCandidates¶
The maximum number of candidates in a phragmen election.
Warning: The election happens onchain, and this value will determine the size of the election. When this limit is reached no more candidates are accepted in the election.
Value¶
1000
Python¶
constant = substrate.get_constant('PhragmenElection', 'MaxCandidates')
MaxVoters¶
The maximum number of voters to allow in a phragmen election.
Warning: This impacts the size of the election which is run onchain. When the limit is reached the new voters are ignored.
Value¶
10000
Python¶
constant = substrate.get_constant('PhragmenElection', 'MaxVoters')
PalletId¶
Identifier for the elections-phragmen pallet's lock
Value¶
'0x706872656c656374'
Python¶
constant = substrate.get_constant('PhragmenElection', 'PalletId')
TermDuration¶
How long each seat is kept. This defines the next block number at which an election round will happen. If set to zero, no elections are ever triggered and the module will be in passive mode.
Value¶
14400
Python¶
constant = substrate.get_constant('PhragmenElection', 'TermDuration')
VotingBondBase¶
Base deposit associated with voting.
This should be sensibly high to economically ensure the pallet cannot be attacked by creating a gigantic number of votes.
Value¶
668799997200
Python¶
constant = substrate.get_constant('PhragmenElection', 'VotingBondBase')
VotingBondFactor¶
The amount of bond that need to be locked for each vote (32 bytes).
Value¶
1066665600
Python¶
constant = substrate.get_constant('PhragmenElection', 'VotingBondFactor')
Errors¶
DuplicatedCandidate¶
Duplicated candidate submission.
InsufficientCandidateFunds¶
Candidate does not have enough funds.
InvalidRenouncing¶
The renouncing origin presented a wrong Renouncing parameter.
InvalidReplacement¶
Prediction regarding replacement after member removal is wrong.
InvalidVoteCount¶
The provided count of number of votes is incorrect.
InvalidWitnessData¶
The provided count of number of candidates is incorrect.
LowBalance¶
Cannot vote with stake less than minimum balance.
MaximumVotesExceeded¶
Cannot vote more than maximum allowed.
MemberSubmit¶
Member cannot re-submit candidacy.
MustBeVoter¶
Must be a voter.
NoVotes¶
Must vote for at least one candidate.
NotMember¶
Not a member.
RunnerUpSubmit¶
Runner cannot re-submit candidacy.
TooManyCandidates¶
Too many candidates have been created.
TooManyVotes¶
Cannot vote more than candidates.
UnableToPayBond¶
Voter can not pay voting bond.
UnableToVote¶
Cannot vote when no candidates or members exist.
Preimage¶
Calls¶
note_preimage¶
Register a preimage on-chain.
If the preimage was previously requested, no fees or deposits are taken for providing the preimage. Otherwise, a deposit is taken proportional to the size of the preimage.
Attributes¶
| Name | Type |
|---|---|
| bytes | Vec<u8> |
Python¶
call = substrate.compose_call(
'Preimage', 'note_preimage', {'bytes': 'Bytes'}
)
request_preimage¶
Request a preimage be uploaded to the chain without paying any fees or deposits.
If the preimage requests has already been provided on-chain, we unreserve any deposit a user may have paid, and take the control of the preimage out of their hands.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'request_preimage', {'hash': '[u8; 32]'}
)
unnote_preimage¶
Clear an unrequested preimage from the runtime storage.
If len is provided, then it will be a much cheaper operation.
hash: The hash of the preimage to be removed from the store.len: The length of the preimage ofhash.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'unnote_preimage', {'hash': '[u8; 32]'}
)
unrequest_preimage¶
Clear a previously made request for a preimage.
NOTE: THIS MUST NOT BE CALLED ON hash MORE TIMES THAN request_preimage.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'unrequest_preimage', {'hash': '[u8; 32]'}
)
Events¶
Cleared¶
A preimage has ben cleared.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Noted¶
A preimage has been noted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Requested¶
A preimage has been requested.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Storage functions¶
PreimageFor¶
Python¶
result = substrate.query(
'Preimage', 'PreimageFor', [('[u8; 32]', 'u32')]
)
Return value¶
'Bytes'
StatusFor¶
The request status of a given hash.
Python¶
result = substrate.query(
'Preimage', 'StatusFor', ['[u8; 32]']
)
Return value¶
{
'Requested': {
'count': 'u32',
'deposit': (None, ('AccountId', 'u128')),
'len': (None, 'u32'),
},
'Unrequested': {'deposit': ('AccountId', 'u128'), 'len': 'u32'},
}
Errors¶
AlreadyNoted¶
Preimage has already been noted on-chain.
NotAuthorized¶
The user is not authorized to perform this action.
NotNoted¶
The preimage cannot be removed since it has not yet been noted.
NotRequested¶
The preimage request cannot be removed since no outstanding requests exist.
Requested¶
A preimage may not be removed when there are outstanding requests.
TooBig¶
Preimage is too large to store on-chain.
Proxy¶
Calls¶
add_proxy¶
Register a proxy account for the sender that is able to make calls on its behalf.
The dispatch origin for this call must be Signed.
Parameters:
- proxy: The account that the caller would like to make a proxy.
- proxy_type: The permissions allowed for this proxy account.
- delay: The announcement period required of the initial proxy. Will generally be
zero.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Proxy', 'add_proxy', {
'delay': 'u32',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'proxy_type': (
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
}
)
announce¶
Publish the hash of a proxy-call that will be made in the future.
This must be called some number of blocks before the corresponding proxy is attempted
if the delay associated with the proxy relationship is greater than zero.
No more than MaxPending announcements may be made at any one time.
This will take a deposit of AnnouncementDepositFactor as well as
AnnouncementDepositBase if there are no other pending announcements.
The dispatch origin for this call must be Signed and a proxy of real.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- call_hash: The hash of the call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'announce', {
'call_hash': '[u8; 32]',
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
create_pure¶
Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
initialize it with a proxy of proxy_type for origin sender.
Requires a Signed origin.
proxy_type: The type of the proxy that the sender will be registered as over the new account. This will almost always be the most permissiveProxyTypepossible to allow for maximum flexibility.index: A disambiguation index, in case this is called multiple times in the same transaction (e.g. withutility::batch). Unless you're usingbatchyou probably just want to use0.delay: The announcement period required of the initial proxy. Will generally be zero.
Fails with Duplicate if this has already been called in this transaction, from the
same sender, with the same parameters.
Fails if there are insufficient funds to pay for deposit.
Attributes¶
| Name | Type |
|---|---|
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
| index | u16 |
Python¶
call = substrate.compose_call(
'Proxy', 'create_pure', {
'delay': 'u32',
'index': 'u16',
'proxy_type': (
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
}
)
kill_pure¶
Removes a previously spawned pure proxy.
WARNING: All access to this account will be lost. Any funds held in it will be inaccessible.
Requires a Signed origin, and the sender account must have been created by a call to
pure with corresponding parameters.
spawner: The account that originally calledpureto create this account.index: The disambiguation index originally passed topure. Probably0.proxy_type: The proxy type originally passed topure.height: The height of the chain when the call topurewas processed.ext_index: The extrinsic index in which the call topurewas processed.
Fails with NoPermission in case the caller is not a previously created pure
account whose pure call has corresponding parameters.
Attributes¶
| Name | Type |
|---|---|
| spawner | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| index | u16 |
| height | T::BlockNumber |
| ext_index | u32 |
Python¶
call = substrate.compose_call(
'Proxy', 'kill_pure', {
'ext_index': 'u32',
'height': 'u32',
'index': 'u16',
'proxy_type': (
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
'spawner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
proxy¶
Dispatch the given call from an account that the sender is authorised for through
add_proxy.
Removes any corresponding announcement(s).
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- force_proxy_type: Specify the exact proxy type to be used and checked for this call.
- call: The call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| force_proxy_type | Option<T::ProxyType> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Proxy', 'proxy', {
'call': 'Call',
'force_proxy_type': (
None,
(
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
),
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
proxy_announced¶
Dispatch the given call from an account that the sender is authorized for through
add_proxy.
Removes any corresponding announcement(s).
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- force_proxy_type: Specify the exact proxy type to be used and checked for this call.
- call: The call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| real | AccountIdLookupOf<T> |
| force_proxy_type | Option<T::ProxyType> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Proxy', 'proxy_announced', {
'call': 'Call',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'force_proxy_type': (
None,
(
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
),
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reject_announcement¶
Remove the given announcement of a delegate.
May be called by a target (proxied) account to remove a call that one of their delegates
(delegate) has announced they want to execute. The deposit is returned.
The dispatch origin for this call must be Signed.
Parameters:
- delegate: The account that previously announced the call.
- call_hash: The hash of the call to be made.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'reject_announcement', {
'call_hash': '[u8; 32]',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_announcement¶
Remove a given announcement.
May be called by a proxy account to remove a call they previously announced and return the deposit.
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- call_hash: The hash of the call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'remove_announcement', {
'call_hash': '[u8; 32]',
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_proxies¶
Unregister all proxy accounts for the sender.
The dispatch origin for this call must be Signed.
WARNING: This may be called on accounts created by pure, however if done, then
the unreserved fees will be inaccessible. All access to this account will be lost.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Proxy', 'remove_proxies', {}
)
remove_proxy¶
Unregister a proxy account for the sender.
The dispatch origin for this call must be Signed.
Parameters:
- proxy: The account that the caller would like to remove as a proxy.
- proxy_type: The permissions currently enabled for the removed proxy account.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Proxy', 'remove_proxy', {
'delay': 'u32',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'proxy_type': (
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
}
)
Events¶
Announced¶
An announcement was placed to make a call in the future.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| real | T::AccountId |
AccountId |
| proxy | T::AccountId |
AccountId |
| call_hash | CallHashOf<T> |
[u8; 32] |
ProxyAdded¶
A proxy was added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| delegator | T::AccountId |
AccountId |
| delegatee | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'NonTransfer', 'Governance', 'Staking', 'IdentityJudgement', 'CancelProxy', 'Auction', 'Society') |
| delay | T::BlockNumber |
u32 |
ProxyExecuted¶
A proxy was executed correctly, with the given.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
ProxyRemoved¶
A proxy was removed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| delegator | T::AccountId |
AccountId |
| delegatee | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'NonTransfer', 'Governance', 'Staking', 'IdentityJudgement', 'CancelProxy', 'Auction', 'Society') |
| delay | T::BlockNumber |
u32 |
PureCreated¶
A pure account has been created by new proxy with given disambiguation index and proxy type.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pure | T::AccountId |
AccountId |
| who | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'NonTransfer', 'Governance', 'Staking', 'IdentityJudgement', 'CancelProxy', 'Auction', 'Society') |
| disambiguation_index | u16 |
u16 |
Storage functions¶
Announcements¶
The announcements made by the proxy (key).
Python¶
result = substrate.query(
'Proxy', 'Announcements', ['AccountId']
)
Return value¶
([{'call_hash': '[u8; 32]', 'height': 'u32', 'real': 'AccountId'}], 'u128')
Proxies¶
The set of account proxies. Maps the account which has delegated to the accounts which are being delegated to, together with the amount held on deposit.
Python¶
result = substrate.query(
'Proxy', 'Proxies', ['AccountId']
)
Return value¶
(
[
{
'delay': 'u32',
'delegate': 'AccountId',
'proxy_type': (
'Any',
'NonTransfer',
'Governance',
'Staking',
'IdentityJudgement',
'CancelProxy',
'Auction',
'Society',
),
},
],
'u128',
)
Constants¶
AnnouncementDepositBase¶
The base amount of currency needed to reserve for creating an announcement.
This is held when a new storage item holding a Balance is created (typically 16
bytes).
Value¶
666933332400
Python¶
constant = substrate.get_constant('Proxy', 'AnnouncementDepositBase')
AnnouncementDepositFactor¶
The amount of currency needed per announcement made.
This is held for adding an AccountId, Hash and BlockNumber (typically 68 bytes)
into a pre-existing storage value.
Value¶
2199997800
Python¶
constant = substrate.get_constant('Proxy', 'AnnouncementDepositFactor')
MaxPending¶
The maximum amount of time-delayed announcements that are allowed to be pending.
Value¶
32
Python¶
constant = substrate.get_constant('Proxy', 'MaxPending')
MaxProxies¶
The maximum amount of proxies allowed for a single account.
Value¶
32
Python¶
constant = substrate.get_constant('Proxy', 'MaxProxies')
ProxyDepositBase¶
The base amount of currency needed to reserve for creating a proxy.
This is held for an additional storage item whose value size is
sizeof(Balance) bytes and whose key size is sizeof(AccountId) bytes.
Value¶
666933332400
Python¶
constant = substrate.get_constant('Proxy', 'ProxyDepositBase')
ProxyDepositFactor¶
The amount of currency needed per proxy added.
This is held for adding 32 bytes plus an instance of ProxyType more into a
pre-existing storage value. Thus, when configuring ProxyDepositFactor one should take
into account 32 + proxy_type.encode().len() bytes of data.
Value¶
1099998900
Python¶
constant = substrate.get_constant('Proxy', 'ProxyDepositFactor')
Errors¶
Duplicate¶
Account is already a proxy.
NoPermission¶
Call may not be made by proxy because it may escalate its privileges.
NoSelfProxy¶
Cannot add self as proxy.
NotFound¶
Proxy registration not found.
NotProxy¶
Sender is not a proxy of the account to be proxied.
TooMany¶
There are too many proxies registered or too many announcements pending.
Unannounced¶
Announcement, if made at all, was made too recently.
Unproxyable¶
A call which is incompatible with the proxy type's filter was attempted.
Recovery¶
Calls¶
as_recovered¶
Send a call through a recovered account.
The dispatch origin for this call must be Signed and registered to be able to make calls on behalf of the recovered account.
Parameters:
- account: The recovered account you want to make a call on-behalf-of.
- call: The call you want to make with the recovered account.
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Recovery', 'as_recovered', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'call': 'Call',
}
)
cancel_recovered¶
Cancel the ability to use as_recovered for account.
The dispatch origin for this call must be Signed and registered to be able to make calls on behalf of the recovered account.
Parameters:
- account: The recovered account you are able to call on-behalf-of.
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'cancel_recovered', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
claim_recovery¶
Allow a successful rescuer to claim their recovered account.
The dispatch origin for this call must be Signed and must be a "rescuer"
who has successfully completed the account recovery process: collected
threshold or more vouches, waited delay_period blocks since initiation.
Parameters:
- account: The lost account that you want to claim has been successfully recovered by
you.
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'claim_recovery', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
close_recovery¶
As the controller of a recoverable account, close an active recovery process for your account.
Payment: By calling this function, the recoverable account will receive
the recovery deposit RecoveryDeposit placed by the rescuer.
The dispatch origin for this call must be Signed and must be a recoverable account with an active recovery process for it.
Parameters:
- rescuer: The account trying to rescue this recoverable account.
Attributes¶
| Name | Type |
|---|---|
| rescuer | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'close_recovery', {
'rescuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
create_recovery¶
Create a recovery configuration for your account. This makes your account recoverable.
Payment: ConfigDepositBase + FriendDepositFactor * #_of_friends balance
will be reserved for storing the recovery configuration. This deposit is returned
in full when the user calls remove_recovery.
The dispatch origin for this call must be Signed.
Parameters:
- friends: A list of friends you trust to vouch for recovery attempts. Should be
ordered and contain no duplicate values.
- threshold: The number of friends that must vouch for a recovery attempt before the
account can be recovered. Should be less than or equal to the length of the list of
friends.
- delay_period: The number of blocks after a recovery attempt is initialized that
needs to pass before the account can be recovered.
Attributes¶
| Name | Type |
|---|---|
| friends | Vec<T::AccountId> |
| threshold | u16 |
| delay_period | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Recovery', 'create_recovery', {
'delay_period': 'u32',
'friends': ['AccountId'],
'threshold': 'u16',
}
)
initiate_recovery¶
Initiate the process for recovering a recoverable account.
Payment: RecoveryDeposit balance will be reserved for initiating the
recovery process. This deposit will always be repatriated to the account
trying to be recovered. See close_recovery.
The dispatch origin for this call must be Signed.
Parameters:
- account: The lost account that you want to recover. This account needs to be
recoverable (i.e. have a recovery configuration).
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'initiate_recovery', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_recovery¶
Remove the recovery process for your account. Recovered accounts are still accessible.
NOTE: The user must make sure to call close_recovery on all active
recovery attempts before calling this function else it will fail.
Payment: By calling this function the recoverable account will unreserve
their recovery configuration deposit.
(ConfigDepositBase + FriendDepositFactor * #_of_friends)
The dispatch origin for this call must be Signed and must be a recoverable account (i.e. has a recovery configuration).
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Recovery', 'remove_recovery', {}
)
set_recovered¶
Allow ROOT to bypass the recovery process and set an a rescuer account for a lost account directly.
The dispatch origin for this call must be ROOT.
Parameters:
- lost: The "lost account" to be recovered.
- rescuer: The "rescuer account" which can call as the lost account.
Attributes¶
| Name | Type |
|---|---|
| lost | AccountIdLookupOf<T> |
| rescuer | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'set_recovered', {
'lost': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'rescuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vouch_recovery¶
Allow a "friend" of a recoverable account to vouch for an active recovery process for that account.
The dispatch origin for this call must be Signed and must be a "friend" for the recoverable account.
Parameters:
- lost: The lost account that you want to recover.
- rescuer: The account trying to rescue the lost account that you want to vouch for.
The combination of these two parameters must point to an active recovery process.
Attributes¶
| Name | Type |
|---|---|
| lost | AccountIdLookupOf<T> |
| rescuer | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Recovery', 'vouch_recovery', {
'lost': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'rescuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
AccountRecovered¶
Lost account has been successfully recovered by rescuer account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lost_account | T::AccountId |
AccountId |
| rescuer_account | T::AccountId |
AccountId |
RecoveryClosed¶
A recovery process for lost account by rescuer account has been closed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lost_account | T::AccountId |
AccountId |
| rescuer_account | T::AccountId |
AccountId |
RecoveryCreated¶
A recovery process has been set up for an account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
RecoveryInitiated¶
A recovery process has been initiated for lost account by rescuer account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lost_account | T::AccountId |
AccountId |
| rescuer_account | T::AccountId |
AccountId |
RecoveryRemoved¶
A recovery process has been removed for an account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lost_account | T::AccountId |
AccountId |
RecoveryVouched¶
A recovery process for lost account by rescuer account has been vouched for by sender.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lost_account | T::AccountId |
AccountId |
| rescuer_account | T::AccountId |
AccountId |
| sender | T::AccountId |
AccountId |
Storage functions¶
ActiveRecoveries¶
Active recovery attempts.
First account is the account to be recovered, and the second account is the user trying to recover the account.
Python¶
result = substrate.query(
'Recovery', 'ActiveRecoveries', ['AccountId', 'AccountId']
)
Return value¶
{'created': 'u32', 'deposit': 'u128', 'friends': ['AccountId']}
Proxy¶
The list of allowed proxy accounts.
Map from the user who can access it to the recovered account.
Python¶
result = substrate.query(
'Recovery', 'Proxy', ['AccountId']
)
Return value¶
'AccountId'
Recoverable¶
The set of recoverable accounts and their recovery configuration.
Python¶
result = substrate.query(
'Recovery', 'Recoverable', ['AccountId']
)
Return value¶
{'delay_period': 'u32', 'deposit': 'u128', 'friends': ['AccountId'], 'threshold': 'u16'}
Constants¶
ConfigDepositBase¶
The base amount of currency needed to reserve for creating a recovery configuration.
This is held for an additional storage item whose value size is
2 + sizeof(BlockNumber, Balance) bytes.
Value¶
166666666500
Python¶
constant = substrate.get_constant('Recovery', 'ConfigDepositBase')
FriendDepositFactor¶
The amount of currency needed per additional user when creating a recovery configuration.
This is held for adding sizeof(AccountId) bytes more into a pre-existing storage
value.
Value¶
16666666650
Python¶
constant = substrate.get_constant('Recovery', 'FriendDepositFactor')
MaxFriends¶
The maximum amount of friends allowed in a recovery configuration.
NOTE: The threshold programmed in this Pallet uses u16, so it does not really make sense to have a limit here greater than u16::MAX. But also, that is a lot more than you should probably set this value to anyway...
Value¶
9
Python¶
constant = substrate.get_constant('Recovery', 'MaxFriends')
RecoveryDeposit¶
The base amount of currency needed to reserve for starting a recovery.
This is primarily held for deterring malicious recovery attempts, and should
have a value large enough that a bad actor would choose not to place this
deposit. It also acts to fund additional storage item whose value size is
sizeof(BlockNumber, Balance + T * AccountId) bytes. Where T is a configurable
threshold.
Value¶
166666666500
Python¶
constant = substrate.get_constant('Recovery', 'RecoveryDeposit')
Errors¶
AlreadyProxy¶
This account is already set up for recovery
AlreadyRecoverable¶
This account is already set up for recovery
AlreadyStarted¶
A recovery process has already started for this account
AlreadyVouched¶
This user has already vouched for this recovery
BadState¶
Some internal state is broken.
DelayPeriod¶
The friend must wait until the delay period to vouch for this recovery
MaxFriends¶
Friends list must be less than max friends
NotAllowed¶
User is not allowed to make a call on behalf of this account
NotEnoughFriends¶
Friends list must be greater than zero and threshold
NotFriend¶
This account is not a friend who can vouch
NotRecoverable¶
This account is not set up for recovery
NotSorted¶
Friends list must be sorted and free of duplicates
NotStarted¶
A recovery process has not started for this rescuer
StillActive¶
There are still active recovery attempts that need to be closed
Threshold¶
The threshold for recovering this account has not been met
ZeroThreshold¶
Threshold must be greater than zero
Referenda¶
Calls¶
cancel¶
Cancel an ongoing referendum.
origin: must be theCancelOrigin.index: The index of the referendum to be cancelled.
Emits Cancelled.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'cancel', {'index': 'u32'}
)
kill¶
Cancel an ongoing referendum and slash the deposits.
origin: must be theKillOrigin.index: The index of the referendum to be cancelled.
Emits Killed and DepositSlashed.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'kill', {'index': 'u32'}
)
nudge_referendum¶
Advance a referendum onto its next logical state. Only used internally.
origin: must beRoot.index: the referendum to be advanced.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'nudge_referendum', {'index': 'u32'}
)
one_fewer_deciding¶
Advance a track onto its next logical state. Only used internally.
origin: must beRoot.track: the track to be advanced.
Action item for when there is now one fewer referendum in the deciding phase and the
DecidingCount is not yet updated. This means that we should either:
- begin deciding another referendum (and leave DecidingCount alone); or
- decrement DecidingCount.
Attributes¶
| Name | Type |
|---|---|
| track | TrackIdOf<T, I> |
Python¶
call = substrate.compose_call(
'Referenda', 'one_fewer_deciding', {'track': 'u16'}
)
place_decision_deposit¶
Post the Decision Deposit for a referendum.
origin: must beSignedand the account must have funds available for the referendum's track's Decision Deposit.index: The index of the submitted referendum whose Decision Deposit is yet to be posted.
Emits DecisionDepositPlaced.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'place_decision_deposit', {'index': 'u32'}
)
refund_decision_deposit¶
Refund the Decision Deposit for a closed referendum back to the depositor.
origin: must beSignedorRoot.index: The index of a closed referendum whose Decision Deposit has not yet been refunded.
Emits DecisionDepositRefunded.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'refund_decision_deposit', {'index': 'u32'}
)
refund_submission_deposit¶
Refund the Submission Deposit for a closed referendum back to the depositor.
origin: must beSignedorRoot.index: The index of a closed referendum whose Submission Deposit has not yet been refunded.
Emits SubmissionDepositRefunded.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Referenda', 'refund_submission_deposit', {'index': 'u32'}
)
submit¶
Propose a referendum on a privileged action.
origin: must beSubmitOriginand the account must haveSubmissionDepositfunds available.proposal_origin: The origin from which the proposal should be executed.proposal: The proposal.enactment_moment: The moment that the proposal should be enacted.
Emits Submitted.
Attributes¶
| Name | Type |
|---|---|
| proposal_origin | Box<PalletsOriginOf<T>> |
| proposal | BoundedCallOf<T, I> |
| enactment_moment | DispatchTime<T::BlockNumber> |
Python¶
call = substrate.compose_call(
'Referenda', 'submit', {
'enactment_moment': {
'After': 'u32',
'At': 'u32',
},
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
'proposal_origin': {
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
None: None,
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {
'Parachain': 'u32',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'XcmPallet': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
},
}
)
Events¶
Approved¶
A referendum has been approved and its proposal has been scheduled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
Cancelled¶
A referendum has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
ConfirmAborted¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
ConfirmStarted¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
Confirmed¶
A referendum has ended its confirmation phase and is ready for approval.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
DecisionDepositPlaced¶
The decision deposit has been placed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
DecisionDepositRefunded¶
The decision deposit has been refunded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
DecisionStarted¶
A referendum has moved into the deciding phase.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| track | TrackIdOf<T, I> |
u16 |
| proposal | BoundedCallOf<T, I> |
{'Legacy': {'hash': '[u8; 32]'}, 'Inline': 'Bytes', 'Lookup': {'hash': '[u8; 32]', 'len': 'u32'}} |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
DepositSlashed¶
A deposit has been slashaed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
Killed¶
A referendum has been killed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
Rejected¶
A proposal has been rejected by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
SubmissionDepositRefunded¶
The submission deposit has been refunded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T, I> |
u128 |
Submitted¶
A referendum has been submitted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| track | TrackIdOf<T, I> |
u16 |
| proposal | BoundedCallOf<T, I> |
{'Legacy': {'hash': '[u8; 32]'}, 'Inline': 'Bytes', 'Lookup': {'hash': '[u8; 32]', 'len': 'u32'}} |
TimedOut¶
A referendum has been timed out without being decided.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | ReferendumIndex |
u32 |
| tally | T::Tally |
{'ayes': 'u128', 'nays': 'u128', 'support': 'u128'} |
Storage functions¶
DecidingCount¶
The number of referenda being decided currently.
Python¶
result = substrate.query(
'Referenda', 'DecidingCount', ['u16']
)
Return value¶
'u32'
ReferendumCount¶
The next free referendum index, aka the number of referenda started so far.
Python¶
result = substrate.query(
'Referenda', 'ReferendumCount', []
)
Return value¶
'u32'
ReferendumInfoFor¶
Information concerning any given referendum.
Python¶
result = substrate.query(
'Referenda', 'ReferendumInfoFor', ['u32']
)
Return value¶
{
'Approved': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'Cancelled': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'Killed': 'u32',
'Ongoing': {
'alarm': (None, ('u32', ('u32', 'u32'))),
'deciding': (None, {'confirming': (None, 'u32'), 'since': 'u32'}),
'decision_deposit': (None, {'amount': 'u128', 'who': 'AccountId'}),
'enactment': {'After': 'u32', 'At': 'u32'},
'in_queue': 'bool',
'origin': {
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
None: None,
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {'Parachain': 'u32'},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'XcmPallet': {
'Response': {'interior': 'scale_info::159', 'parents': 'u8'},
'Xcm': {'interior': 'scale_info::159', 'parents': 'u8'},
},
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
},
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'submission_deposit': {'amount': 'u128', 'who': 'AccountId'},
'submitted': 'u32',
'tally': {'ayes': 'u128', 'nays': 'u128', 'support': 'u128'},
'track': 'u16',
},
'Rejected': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
'TimedOut': (
'u32',
(None, {'amount': 'u128', 'who': 'AccountId'}),
(None, {'amount': 'u128', 'who': 'AccountId'}),
),
}
TrackQueue¶
The sorted list of referenda ready to be decided but not yet being decided, ordered by conviction-weighted approvals.
This should be empty if DecidingCount is less than TrackInfo::max_deciding.
Python¶
result = substrate.query(
'Referenda', 'TrackQueue', ['u16']
)
Return value¶
[('u32', 'u128')]
Constants¶
AlarmInterval¶
Quantization level for the referendum wakeup scheduler. A higher number will result in fewer storage reads/writes needed for smaller voters, but also result in delays to the automatic referendum status changes. Explicit servicing instructions are unaffected.
Value¶
1
Python¶
constant = substrate.get_constant('Referenda', 'AlarmInterval')
MaxQueued¶
Maximum size of the referendum queue for a single track.
Value¶
100
Python¶
constant = substrate.get_constant('Referenda', 'MaxQueued')
SubmissionDeposit¶
The minimum amount to be used as a deposit for a public referendum proposal.
Value¶
33333333333
Python¶
constant = substrate.get_constant('Referenda', 'SubmissionDeposit')
Tracks¶
Information concerning the different referendum tracks.
Value¶
[
(
0,
{
'confirm_period': 14400,
'decision_deposit': 3333333333300000,
'decision_period': 201600,
'max_deciding': 1,
'min_approval': {
'Reciprocal': {
'factor': 222222224,
'x_offset': 333333335,
'y_offset': 333333332,
},
},
'min_enactment_period': 14400,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'root',
'prepare_period': 1200,
},
),
(
1,
{
'confirm_period': 100,
'decision_deposit': 333333333330000,
'decision_period': 201600,
'max_deciding': 100,
'min_approval': {
'Reciprocal': {
'factor': 270899180,
'x_offset': 389830523,
'y_offset': 305084738,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 8650766,
'x_offset': 18867926,
'y_offset': 41509433,
},
},
'name': 'whitelisted_caller',
'prepare_period': 300,
},
),
(
10,
{
'confirm_period': 1800,
'decision_deposit': 166666666665000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'staking_admin',
'prepare_period': 1200,
},
),
(
11,
{
'confirm_period': 1800,
'decision_deposit': 33333333333000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'Reciprocal': {
'factor': 222222224,
'x_offset': 333333335,
'y_offset': 333333332,
},
},
'min_enactment_period': 14400,
'min_support': {
'LinearDecreasing': {
'ceil': 500000000,
'floor': 0,
'length': 1000000000,
},
},
'name': 'treasurer',
'prepare_period': 1200,
},
),
(
12,
{
'confirm_period': 1800,
'decision_deposit': 166666666665000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'lease_admin',
'prepare_period': 1200,
},
),
(
13,
{
'confirm_period': 1800,
'decision_deposit': 166666666665000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'fellowship_admin',
'prepare_period': 1200,
},
),
(
14,
{
'confirm_period': 1800,
'decision_deposit': 166666666665000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'Reciprocal': {
'factor': 222222224,
'x_offset': 333333335,
'y_offset': 333333332,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 49586777,
'x_offset': 90909091,
'y_offset': -45454546,
},
},
'name': 'general_admin',
'prepare_period': 1200,
},
),
(
15,
{
'confirm_period': 1800,
'decision_deposit': 166666666665000,
'decision_period': 201600,
'max_deciding': 10,
'min_approval': {
'Reciprocal': {
'factor': 222222224,
'x_offset': 333333335,
'y_offset': 333333332,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 49586777,
'x_offset': 90909091,
'y_offset': -45454546,
},
},
'name': 'auction_admin',
'prepare_period': 1200,
},
),
(
20,
{
'confirm_period': 1800,
'decision_deposit': 333333333330000,
'decision_period': 100800,
'max_deciding': 1000,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'referendum_canceller',
'prepare_period': 1200,
},
),
(
21,
{
'confirm_period': 1800,
'decision_deposit': 1666666666650000,
'decision_period': 201600,
'max_deciding': 1000,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'referendum_killer',
'prepare_period': 1200,
},
),
(
30,
{
'confirm_period': 100,
'decision_deposit': 33333333333,
'decision_period': 100800,
'max_deciding': 200,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 357142857,
},
},
'min_enactment_period': 10,
'min_support': {
'Reciprocal': {
'factor': 1620729,
'x_offset': 3231018,
'y_offset': -1615509,
},
},
'name': 'small_tipper',
'prepare_period': 10,
},
),
(
31,
{
'confirm_period': 600,
'decision_deposit': 333333333330,
'decision_period': 100800,
'max_deciding': 100,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 357142857,
},
},
'min_enactment_period': 100,
'min_support': {
'Reciprocal': {
'factor': 4149097,
'x_offset': 8230453,
'y_offset': -4115227,
},
},
'name': 'big_tipper',
'prepare_period': 100,
},
),
(
32,
{
'confirm_period': 7200,
'decision_deposit': 3333333333300,
'decision_period': 201600,
'max_deciding': 50,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 607142857,
},
},
'min_enactment_period': 14400,
'min_support': {
'Reciprocal': {
'factor': 7892829,
'x_offset': 15544040,
'y_offset': -7772020,
},
},
'name': 'small_spender',
'prepare_period': 2400,
},
),
(
33,
{
'confirm_period': 14400,
'decision_deposit': 6666666666600,
'decision_period': 201600,
'max_deciding': 50,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 821428571,
},
},
'min_enactment_period': 14400,
'min_support': {
'Reciprocal': {
'factor': 14377233,
'x_offset': 27972031,
'y_offset': -13986016,
},
},
'name': 'medium_spender',
'prepare_period': 2400,
},
),
(
34,
{
'confirm_period': 28800,
'decision_deposit': 13333333333200,
'decision_period': 201600,
'max_deciding': 50,
'min_approval': {
'LinearDecreasing': {
'ceil': 1000000000,
'floor': 500000000,
'length': 1000000000,
},
},
'min_enactment_period': 14400,
'min_support': {
'Reciprocal': {
'factor': 28326977,
'x_offset': 53763445,
'y_offset': -26881723,
},
},
'name': 'big_spender',
'prepare_period': 2400,
},
),
]
Python¶
constant = substrate.get_constant('Referenda', 'Tracks')
UndecidingTimeout¶
The number of blocks after submission that a referendum must begin being decided by. Once this passes, then anyone may cancel the referendum.
Value¶
201600
Python¶
constant = substrate.get_constant('Referenda', 'UndecidingTimeout')
Errors¶
BadReferendum¶
The referendum index provided is invalid in this context.
BadStatus¶
The referendum status is invalid for this operation.
BadTrack¶
The track identifier given was invalid.
Full¶
There are already a full complement of referenda in progress for this track.
HasDeposit¶
Referendum's decision deposit is already paid.
NoDeposit¶
The deposit cannot be refunded since none was made.
NoPermission¶
The deposit refunder is not the depositor.
NoTrack¶
No track exists for the proposal origin.
NotOngoing¶
Referendum is not ongoing.
NothingToDo¶
There was nothing to do in the advancement.
QueueEmpty¶
The queue of the track is empty.
Unfinished¶
Any deposit cannot be refunded until after the decision is over.
Registrar¶
Calls¶
add_lock¶
Add a manager lock from a para. This will prevent the manager of a para to deregister or swap a para.
Can be called by Root, the parachain, or the parachain manager if the parachain is unlocked.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
Python¶
call = substrate.compose_call(
'Registrar', 'add_lock', {'para': 'u32'}
)
deregister¶
Deregister a Para Id, freeing all data and returning any deposit.
The caller must be Root, the para owner, or the para itself. The para must be a parathread.
Attributes¶
| Name | Type |
|---|---|
| id | ParaId |
Python¶
call = substrate.compose_call(
'Registrar', 'deregister', {'id': 'u32'}
)
force_register¶
Force the registration of a Para Id on the relay chain.
This function must be called by a Root origin.
The deposit taken can be specified for this registration. Any ParaId
can be registered, including sub-1000 IDs which are System Parachains.
Attributes¶
| Name | Type |
|---|---|
| who | T::AccountId |
| deposit | BalanceOf<T> |
| id | ParaId |
| genesis_head | HeadData |
| validation_code | ValidationCode |
Python¶
call = substrate.compose_call(
'Registrar', 'force_register', {
'deposit': 'u128',
'genesis_head': 'Bytes',
'id': 'u32',
'validation_code': 'Bytes',
'who': 'AccountId',
}
)
register¶
Register head data and validation code for a reserved Para Id.
## Arguments
- origin: Must be called by a Signed origin.
- id: The para ID. Must be owned/managed by the origin signing account.
- genesis_head: The genesis head data of the parachain/thread.
- validation_code: The initial validation code of the parachain/thread.
## Deposits/Fees The origin signed account must reserve a corresponding deposit for the registration. Anything already reserved previously for this para ID is accounted for.
## Events
The Registered event is emitted in case of success.
Attributes¶
| Name | Type |
|---|---|
| id | ParaId |
| genesis_head | HeadData |
| validation_code | ValidationCode |
Python¶
call = substrate.compose_call(
'Registrar', 'register', {
'genesis_head': 'Bytes',
'id': 'u32',
'validation_code': 'Bytes',
}
)
remove_lock¶
Remove a manager lock from a para. This will allow the manager of a previously locked para to deregister or swap a para without using governance.
Can only be called by the Root origin or the parachain.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
Python¶
call = substrate.compose_call(
'Registrar', 'remove_lock', {'para': 'u32'}
)
reserve¶
Reserve a Para Id on the relay chain.
This function will reserve a new Para Id to be owned/managed by the origin account.
The origin account is able to register head data and validation code using register to create
a parathread. Using the Slots pallet, a parathread can then be upgraded to get a parachain slot.
## Arguments
- origin: Must be called by a Signed origin. Becomes the manager/owner of the new para ID.
## Deposits/Fees
The origin must reserve a deposit of ParaDeposit for the registration.
## Events
The Reserved event is emitted in case of success, which provides the ID reserved for use.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Registrar', 'reserve', {}
)
schedule_code_upgrade¶
Schedule a parachain upgrade.
Can be called by Root, the parachain, or the parachain manager if the parachain is unlocked.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_code | ValidationCode |
Python¶
call = substrate.compose_call(
'Registrar', 'schedule_code_upgrade', {'new_code': 'Bytes', 'para': 'u32'}
)
set_current_head¶
Set the parachain's current head.
Can be called by Root, the parachain, or the parachain manager if the parachain is unlocked.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| new_head | HeadData |
Python¶
call = substrate.compose_call(
'Registrar', 'set_current_head', {'new_head': 'Bytes', 'para': 'u32'}
)
swap¶
Swap a parachain with another parachain or parathread.
The origin must be Root, the para owner, or the para itself.
The swap will happen only if there is already an opposite swap pending. If there is not, the swap will be stored in the pending swaps map, ready for a later confirmatory swap.
The ParaIds remain mapped to the same head data and code so external code can rely on
ParaId to be a long-term identifier of a notional "parachain". However, their
scheduling info (i.e. whether they're a parathread or parachain), auction information
and the auction deposit are switched.
Attributes¶
| Name | Type |
|---|---|
| id | ParaId |
| other | ParaId |
Python¶
call = substrate.compose_call(
'Registrar', 'swap', {'id': 'u32', 'other': 'u32'}
)
Events¶
Deregistered¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
Registered¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
| manager | T::AccountId |
AccountId |
Reserved¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
| who | T::AccountId |
AccountId |
Storage functions¶
NextFreeParaId¶
The next free ParaId.
Python¶
result = substrate.query(
'Registrar', 'NextFreeParaId', []
)
Return value¶
'u32'
Paras¶
Amount held on deposit for each para and the original depositor.
The given account ID is responsible for registering the code and initial head data, but may only do so if it isn't yet registered. (After that, it's up to governance to do so.)
Python¶
result = substrate.query(
'Registrar', 'Paras', ['u32']
)
Return value¶
{'deposit': 'u128', 'locked': 'bool', 'manager': 'AccountId'}
PendingSwap¶
Pending swap operations.
Python¶
result = substrate.query(
'Registrar', 'PendingSwap', ['u32']
)
Return value¶
'u32'
Constants¶
DataDepositPerByte¶
The deposit to be paid per byte stored on chain.
Value¶
333333333
Python¶
constant = substrate.get_constant('Registrar', 'DataDepositPerByte')
ParaDeposit¶
The deposit to be paid to run a parathread. This should include the cost for storing the genesis head and validation code.
Value¶
40000000000000
Python¶
constant = substrate.get_constant('Registrar', 'ParaDeposit')
Errors¶
AlreadyRegistered¶
The ID is already registered.
CannotDeregister¶
Cannot deregister para
CannotDowngrade¶
Cannot schedule downgrade of parachain to parathread
CannotSwap¶
Cannot perform a parachain slot / lifecycle swap. Check that the state of both paras are correct for the swap to work.
CannotUpgrade¶
Cannot schedule upgrade of parathread to parachain
CodeTooLarge¶
Invalid para code size.
EmptyCode¶
Registering parachain with empty code is not allowed.
HeadDataTooLarge¶
Invalid para head data size.
NotOwner¶
The caller is not the owner of this Id.
NotParachain¶
Para is not a Parachain.
NotParathread¶
Para is not a Parathread.
NotRegistered¶
The ID is not registered.
NotReserved¶
The ID given for registration has not been reserved.
ParaLocked¶
Para is locked from manipulation by the manager. Must use parachain or relay chain governance.
Scheduler¶
Calls¶
cancel¶
Cancel an anonymously scheduled task.
Attributes¶
| Name | Type |
|---|---|
| when | T::BlockNumber |
| index | u32 |
Python¶
call = substrate.compose_call(
'Scheduler', 'cancel', {'index': 'u32', 'when': 'u32'}
)
cancel_named¶
Cancel a named scheduled task.
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
Python¶
call = substrate.compose_call(
'Scheduler', 'cancel_named', {'id': '[u8; 32]'}
)
schedule¶
Anonymously schedule a task.
Attributes¶
| Name | Type |
|---|---|
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule', {
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_after¶
Anonymously schedule a task after a delay.
# <weight>
Same as [schedule].
# </weight>
Attributes¶
| Name | Type |
|---|---|
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_after', {
'after': 'u32',
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
schedule_named¶
Schedule a named task.
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_named', {
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_named_after¶
Schedule a named task after a delay.
# <weight>
Same as schedule_named.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_named_after', {
'after': 'u32',
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
Events¶
CallUnavailable¶
The call for the provided hash was not found so the task has been aborted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
Canceled¶
Canceled some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Dispatched¶
Dispatched some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
PeriodicFailed¶
The given task was unable to be renewed since the agenda is full at that block.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
PermanentlyOverweight¶
The given task can never be executed since it is overweight.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
Scheduled¶
Scheduled some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Storage functions¶
Agenda¶
Items to be executed, indexed by the block number that they should be executed on.
Python¶
result = substrate.query(
'Scheduler', 'Agenda', ['u32']
)
Return value¶
[
(
None,
{
'call': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'maybe_id': (None, '[u8; 32]'),
'maybe_periodic': (None, ('u32', 'u32')),
'origin': {
None: None,
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {'Parachain': 'u32'},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'XcmPallet': {
'Response': 'scale_info::158',
'Xcm': 'scale_info::158',
},
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
},
'priority': 'u8',
},
),
]
IncompleteSince¶
Python¶
result = substrate.query(
'Scheduler', 'IncompleteSince', []
)
Return value¶
'u32'
Lookup¶
Lookup from a name to the block number and index of the task.
For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4 identities.
Python¶
result = substrate.query(
'Scheduler', 'Lookup', ['[u8; 32]']
)
Return value¶
('u32', 'u32')
Constants¶
MaxScheduledPerBlock¶
The maximum number of scheduled calls in the queue for a single block.
Value¶
50
Python¶
constant = substrate.get_constant('Scheduler', 'MaxScheduledPerBlock')
MaximumWeight¶
The maximum weight that may be scheduled per block for any dispatchables.
Value¶
{'proof_size': 14757395258967641292, 'ref_time': 1600000000000}
Python¶
constant = substrate.get_constant('Scheduler', 'MaximumWeight')
Errors¶
FailedToSchedule¶
Failed to schedule a call
Named¶
Attempt to use a non-named function on a named task.
NotFound¶
Cannot find the scheduled call.
RescheduleNoChange¶
Reschedule failed because it does not change scheduled time.
TargetBlockNumberInPast¶
Given target block number is in the past.
Session¶
Calls¶
purge_keys¶
Removes any session key(s) of the function caller.
This doesn't take effect until the next session.
The dispatch origin of this function must be Signed and the account must be either be convertible to a validator ID using the chain's typical addressing system (this usually means being a controller account) or directly convertible into a validator ID (which usually means being a stash account).
# <weight>
- Complexity: O(1) in number of key types. Actual cost depends on the number of length
of T::Keys::key_ids() which is fixed.
- DbReads: T::ValidatorIdOf, NextKeys, origin account
- DbWrites: NextKeys, origin account
- DbWrites per key id: KeyOwner
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Session', 'purge_keys', {}
)
set_keys¶
Sets the session key(s) of the function caller to keys.
Allows an account to set its session key prior to becoming a validator.
This doesn't take effect until the next session.
The dispatch origin of this function must be signed.
# <weight>
- Complexity: O(1). Actual cost depends on the number of length of
T::Keys::key_ids() which is fixed.
- DbReads: origin account, T::ValidatorIdOf, NextKeys
- DbWrites: origin account, NextKeys
- DbReads per key id: KeyOwner
- DbWrites per key id: KeyOwner
# </weight>
Attributes¶
| Name | Type |
|---|---|
| keys | T::Keys |
| proof | Vec<u8> |
Python¶
call = substrate.compose_call(
'Session', 'set_keys', {
'keys': {
'authority_discovery': '[u8; 32]',
'babe': '[u8; 32]',
'grandpa': '[u8; 32]',
'im_online': '[u8; 32]',
'para_assignment': '[u8; 32]',
'para_validator': '[u8; 32]',
},
'proof': 'Bytes',
}
)
Events¶
NewSession¶
New session has happened. Note that the argument is the session index, not the block number as the type might suggest.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| session_index | SessionIndex |
u32 |
Storage functions¶
CurrentIndex¶
Current index of the session.
Python¶
result = substrate.query(
'Session', 'CurrentIndex', []
)
Return value¶
'u32'
DisabledValidators¶
Indices of disabled validators.
The vec is always kept sorted so that we can find whether a given validator is
disabled using binary search. It gets cleared when on_session_ending returns
a new set of identities.
Python¶
result = substrate.query(
'Session', 'DisabledValidators', []
)
Return value¶
['u32']
KeyOwner¶
The owner of a key. The key is the KeyTypeId + the encoded key.
Python¶
result = substrate.query(
'Session', 'KeyOwner', [('[u8; 4]', 'Bytes')]
)
Return value¶
'AccountId'
NextKeys¶
The next session keys for a validator.
Python¶
result = substrate.query(
'Session', 'NextKeys', ['AccountId']
)
Return value¶
{
'authority_discovery': '[u8; 32]',
'babe': '[u8; 32]',
'grandpa': '[u8; 32]',
'im_online': '[u8; 32]',
'para_assignment': '[u8; 32]',
'para_validator': '[u8; 32]',
}
QueuedChanged¶
True if the underlying economic identities or weighting behind the validators has changed in the queued validator set.
Python¶
result = substrate.query(
'Session', 'QueuedChanged', []
)
Return value¶
'bool'
QueuedKeys¶
The queued keys for the next session. When the next session begins, these keys will be used to determine the validator's session keys.
Python¶
result = substrate.query(
'Session', 'QueuedKeys', []
)
Return value¶
[
(
'AccountId',
{
'authority_discovery': '[u8; 32]',
'babe': '[u8; 32]',
'grandpa': '[u8; 32]',
'im_online': '[u8; 32]',
'para_assignment': '[u8; 32]',
'para_validator': '[u8; 32]',
},
),
]
Validators¶
The current set of validators.
Python¶
result = substrate.query(
'Session', 'Validators', []
)
Return value¶
['AccountId']
Errors¶
DuplicatedKey¶
Registered duplicate key.
InvalidProof¶
Invalid ownership proof.
NoAccount¶
Key setting account is not live, so it's impossible to associate keys.
NoAssociatedValidatorId¶
No associated validator ID for account.
NoKeys¶
No keys are associated with this account.
Slots¶
Calls¶
clear_all_leases¶
Clear all leases for a Para Id, refunding any deposits back to the original owners.
The dispatch origin for this call must match T::ForceOrigin.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
Python¶
call = substrate.compose_call(
'Slots', 'clear_all_leases', {'para': 'u32'}
)
force_lease¶
Just a connect into the lease_out call, in case Root wants to force some lease to happen
independently of any other on-chain mechanism to use it.
The dispatch origin for this call must match T::ForceOrigin.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
| leaser | T::AccountId |
| amount | BalanceOf<T> |
| period_begin | LeasePeriodOf<T> |
| period_count | LeasePeriodOf<T> |
Python¶
call = substrate.compose_call(
'Slots', 'force_lease', {
'amount': 'u128',
'leaser': 'AccountId',
'para': 'u32',
'period_begin': 'u32',
'period_count': 'u32',
}
)
trigger_onboard¶
Try to onboard a parachain that has a lease for the current lease period.
This function can be useful if there was some state issue with a para that should have onboarded, but was unable to. As long as they have a lease period, we can let them onboard from here.
Origin must be signed, but can be called by anyone.
Attributes¶
| Name | Type |
|---|---|
| para | ParaId |
Python¶
call = substrate.compose_call(
'Slots', 'trigger_onboard', {'para': 'u32'}
)
Events¶
Leased¶
A para has won the right to a continuous set of lease periods as a parachain. First balance is any extra amount reserved on top of the para's existing deposit. Second balance is the total amount reserved.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| para_id | ParaId |
u32 |
| leaser | T::AccountId |
AccountId |
| period_begin | LeasePeriodOf<T> |
u32 |
| period_count | LeasePeriodOf<T> |
u32 |
| extra_reserved | BalanceOf<T> |
u128 |
| total_amount | BalanceOf<T> |
u128 |
NewLeasePeriod¶
A new [lease_period] is beginning.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| lease_period | LeasePeriodOf<T> |
u32 |
Storage functions¶
Leases¶
Amounts held on deposit for each (possibly future) leased parachain.
The actual amount locked on its behalf by any account at any time is the maximum of the second values of the items in this list whose first value is the account.
The first item in the list is the amount locked for the current Lease Period. Following items are for the subsequent lease periods.
The default value (an empty list) implies that the parachain no longer exists (or never existed) as far as this pallet is concerned.
If a parachain doesn't exist yet but is scheduled to exist in the future, then it
will be left-padded with one or more Nones to denote the fact that nothing is held on
deposit for the non-existent chain currently, but is held at some point in the future.
It is illegal for a None value to trail in the list.
Python¶
result = substrate.query(
'Slots', 'Leases', ['u32']
)
Return value¶
[(None, ('AccountId', 'u128'))]
Constants¶
LeaseOffset¶
The number of blocks to offset each lease period by.
Value¶
0
Python¶
constant = substrate.get_constant('Slots', 'LeaseOffset')
LeasePeriod¶
The number of blocks over which a single period lasts.
Value¶
604800
Python¶
constant = substrate.get_constant('Slots', 'LeasePeriod')
Errors¶
LeaseError¶
There was an error with the lease.
ParaNotOnboarding¶
The parachain ID is not onboarding.
Society¶
Calls¶
bid¶
A user outside of the society can make a bid for entry.
Payment: CandidateDeposit will be reserved for making a bid. It is returned
when the bid becomes a member, or if the bid calls unbid.
The dispatch origin for this call must be Signed.
Parameters:
- value: A one time payment the bid would like to receive when joining the society.
# <weight> Key: B (len of bids), C (len of candidates), M (len of members), X (balance reserve) - Storage Reads: - One storage read to check for suspended candidate. O(1) - One storage read to check for suspended member. O(1) - One storage read to retrieve all current bids. O(B) - One storage read to retrieve all current candidates. O(C) - One storage read to retrieve all members. O(M) - Storage Writes: - One storage mutate to add a new bid to the vector O(B) (TODO: possible optimization w/ read) - Up to one storage removal if bid.len() > MAX_BID_COUNT. O(1) - Notable Computation: - O(B + C + log M) search to check user is not already a part of society. - O(log B) search to insert the new bid sorted. - External Pallet Operations: - One balance reserve operation. O(X) - Up to one balance unreserve operation if bids.len() > MAX_BID_COUNT. - Events: - One event for new bid. - Up to one event for AutoUnbid if bid.len() > MAX_BID_COUNT.
Total Complexity: O(M + B + C + logM + logB + X) # </weight>
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'Society', 'bid', {'value': 'u128'}
)
defender_vote¶
As a member, vote on the defender.
The dispatch origin for this call must be Signed and a member.
Parameters:
- approve: A boolean which says if the candidate should be
approved (true) or rejected (false).
# <weight> - Key: M (len of members) - One storage read O(M) and O(log M) search to check user is a member. - One storage write to add vote to votes. O(1) - One event.
Total Complexity: O(M + logM) # </weight>
Attributes¶
| Name | Type |
|---|---|
| approve | bool |
Python¶
call = substrate.compose_call(
'Society', 'defender_vote', {'approve': 'bool'}
)
found¶
Found the society.
This is done as a discrete action in order to allow for the pallet to be included into a running chain and can only be done once.
The dispatch origin for this call must be from the FounderSetOrigin.
Parameters:
- founder - The first member and head of the newly founded society.
- max_members - The initial max number of members for the society.
- rules - The rules of this society concerning membership.
# <weight>
- Two storage mutates to set Head and Founder. O(1)
- One storage write to add the first member to society. O(1)
- One event.
Total Complexity: O(1) # </weight>
Attributes¶
| Name | Type |
|---|---|
| founder | AccountIdLookupOf<T> |
| max_members | u32 |
| rules | Vec<u8> |
Python¶
call = substrate.compose_call(
'Society', 'found', {
'founder': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'max_members': 'u32',
'rules': 'Bytes',
}
)
judge_suspended_candidate¶
Allow suspended judgement origin to make judgement on a suspended candidate.
If the judgement is Approve, we add them to society as a member with the appropriate
payment for joining society.
If the judgement is Reject, we either slash the deposit of the bid, giving it back
to the society treasury, or we ban the voucher from vouching again.
If the judgement is Rebid, we put the candidate back in the bid pool and let them go
through the induction process again.
The dispatch origin for this call must be from the SuspensionJudgementOrigin.
Parameters:
- who - The suspended candidate to be judged.
- judgement - Approve, Reject, or Rebid.
# <weight>
Key: B (len of bids), M (len of members), X (balance action)
- One storage read to check who is a suspended candidate.
- One storage removal of the suspended candidate.
- Approve Logic
- One storage read to get the available pot to pay users with. O(1)
- One storage write to update the available pot. O(1)
- One storage read to get the current block number. O(1)
- One storage read to get all members. O(M)
- Up to one unreserve currency action.
- Up to two new storage writes to payouts.
- Up to one storage write with O(log M) binary search to add a member to society.
- Reject Logic
- Up to one repatriate reserved currency action. O(X)
- Up to one storage write to ban the vouching member from vouching again.
- Rebid Logic
- Storage mutate with O(log B) binary search to place the user back into bids.
- Up to one additional event if unvouch takes place.
- One storage removal.
- One event for the judgement.
Total Complexity: O(M + logM + B + X) # </weight>
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| judgement | Judgement |
Python¶
call = substrate.compose_call(
'Society', 'judge_suspended_candidate', {
'judgement': (
'Rebid',
'Reject',
'Approve',
),
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
judge_suspended_member¶
Allow suspension judgement origin to make judgement on a suspended member.
If a suspended member is forgiven, we simply add them back as a member, not affecting any of the existing storage items for that member.
If a suspended member is rejected, remove all associated storage items, including their payouts, and remove any vouched bids they currently have.
The dispatch origin for this call must be from the SuspensionJudgementOrigin.
Parameters:
- who - The suspended member to be judged.
- forgive - A boolean representing whether the suspension judgement origin forgives
(true) or rejects (false) a suspended member.
# <weight>
Key: B (len of bids), M (len of members)
- One storage read to check who is a suspended member. O(1)
- Up to one storage write O(M) with O(log M) binary search to add a member back to
society.
- Up to 3 storage removals O(1) to clean up a removed member.
- Up to one storage write O(B) with O(B) search to remove vouched bid from bids.
- Up to one additional event if unvouch takes place.
- One storage removal. O(1)
- One event for the judgement.
Total Complexity: O(M + logM + B) # </weight>
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| forgive | bool |
Python¶
call = substrate.compose_call(
'Society', 'judge_suspended_member', {
'forgive': 'bool',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
payout¶
Transfer the first matured payout for the sender and remove it from the records.
NOTE: This extrinsic needs to be called multiple times to claim multiple matured payouts.
Payment: The member will receive a payment equal to their first matured payout to their free balance.
The dispatch origin for this call must be Signed and a member with payouts remaining.
# <weight> Key: M (len of members), P (number of payouts for a particular member) - One storage read O(M) and O(log M) search to check signer is a member. - One storage read O(P) to get all payouts for a member. - One storage read O(1) to get the current block number. - One currency transfer call. O(X) - One storage write or removal to update the member's payouts. O(P)
Total Complexity: O(M + logM + P + X) # </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Society', 'payout', {}
)
set_max_members¶
Allows root origin to change the maximum number of members in society. Max membership count must be greater than 1.
The dispatch origin for this call must be from ROOT.
Parameters:
- max - The maximum number of members for the society.
# <weight> - One storage write to update the max. O(1) - One event.
Total Complexity: O(1) # </weight>
Attributes¶
| Name | Type |
|---|---|
| max | u32 |
Python¶
call = substrate.compose_call(
'Society', 'set_max_members', {'max': 'u32'}
)
unbid¶
A bidder can remove their bid for entry into society. By doing so, they will have their candidate deposit returned or they will unvouch their voucher.
Payment: The bid deposit is unreserved if the user made a bid.
The dispatch origin for this call must be Signed and a bidder.
Parameters:
- pos: Position in the Bids vector of the bid who wants to unbid.
# <weight> Key: B (len of bids), X (balance unreserve) - One storage read and write to retrieve and update the bids. O(B) - Either one unreserve balance action O(X) or one vouching storage removal. O(1) - One event.
Total Complexity: O(B + X) # </weight>
Attributes¶
| Name | Type |
|---|---|
| pos | u32 |
Python¶
call = substrate.compose_call(
'Society', 'unbid', {'pos': 'u32'}
)
unfound¶
Annul the founding of the society.
The dispatch origin for this call must be Signed, and the signing account must be both
the Founder and the Head. This implies that it may only be done when there is one
member.
# <weight> - Two storage reads O(1). - Four storage removals O(1). - One event.
Total Complexity: O(1) # </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Society', 'unfound', {}
)
unvouch¶
As a vouching member, unvouch a bid. This only works while vouched user is only a bidder (and not a candidate).
The dispatch origin for this call must be Signed and a vouching member.
Parameters:
- pos: Position in the Bids vector of the bid who should be unvouched.
# <weight> Key: B (len of bids) - One storage read O(1) to check the signer is a vouching member. - One storage mutate to retrieve and update the bids. O(B) - One vouching storage removal. O(1) - One event.
Total Complexity: O(B) # </weight>
Attributes¶
| Name | Type |
|---|---|
| pos | u32 |
Python¶
call = substrate.compose_call(
'Society', 'unvouch', {'pos': 'u32'}
)
vote¶
As a member, vote on a candidate.
The dispatch origin for this call must be Signed and a member.
Parameters:
- candidate: The candidate that the member would like to bid on.
- approve: A boolean which says if the candidate should be approved (true) or
rejected (false).
# <weight> Key: C (len of candidates), M (len of members) - One storage read O(M) and O(log M) search to check user is a member. - One account lookup. - One storage read O(C) and O(C) search to check that user is a candidate. - One storage write to add vote to votes. O(1) - One event.
Total Complexity: O(M + logM + C) # </weight>
Attributes¶
| Name | Type |
|---|---|
| candidate | AccountIdLookupOf<T> |
| approve | bool |
Python¶
call = substrate.compose_call(
'Society', 'vote', {
'approve': 'bool',
'candidate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vouch¶
As a member, vouch for someone to join society by placing a bid on their behalf.
There is no deposit required to vouch for a new bid, but a member can only vouch for one bid at a time. If the bid becomes a suspended candidate and ultimately rejected by the suspension judgement origin, the member will be banned from vouching again.
As a vouching member, you can claim a tip if the candidate is accepted. This tip will be paid as a portion of the reward the member will receive for joining the society.
The dispatch origin for this call must be Signed and a member.
Parameters:
- who: The user who you would like to vouch for.
- value: The total reward to be paid between you and the candidate if they become
a member in the society.
- tip: Your cut of the total value payout when the candidate is inducted into
the society. Tips larger than value will be saturated upon payout.
# <weight> Key: B (len of bids), C (len of candidates), M (len of members) - Storage Reads: - One storage read to retrieve all members. O(M) - One storage read to check member is not already vouching. O(1) - One storage read to check for suspended candidate. O(1) - One storage read to check for suspended member. O(1) - One storage read to retrieve all current bids. O(B) - One storage read to retrieve all current candidates. O(C) - Storage Writes: - One storage write to insert vouching status to the member. O(1) - One storage mutate to add a new bid to the vector O(B) (TODO: possible optimization w/ read) - Up to one storage removal if bid.len() > MAX_BID_COUNT. O(1) - Notable Computation: - O(log M) search to check sender is a member. - O(B + C + log M) search to check user is not already a part of society. - O(log B) search to insert the new bid sorted. - External Pallet Operations: - One balance reserve operation. O(X) - Up to one balance unreserve operation if bids.len() > MAX_BID_COUNT. - Events: - One event for vouch. - Up to one event for AutoUnbid if bid.len() > MAX_BID_COUNT.
Total Complexity: O(M + B + C + logM + logB + X) # </weight>
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| value | BalanceOf<T, I> |
| tip | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'Society', 'vouch', {
'tip': 'u128',
'value': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
AutoUnbid¶
A candidate was dropped (due to an excess of bids in the system).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | T::AccountId |
AccountId |
Bid¶
A membership bid just happened. The given account is the candidate's ID and their offer is the second.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate_id | T::AccountId |
AccountId |
| offer | BalanceOf<T, I> |
u128 |
CandidateSuspended¶
A candidate has been suspended
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | T::AccountId |
AccountId |
Challenged¶
A member has been challenged
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
DefenderVote¶
A vote has been placed for a defending member
Attributes¶
| Name | Type | Composition |
|---|---|---|
| voter | T::AccountId |
AccountId |
| vote | bool |
bool |
Deposit¶
Some funds were deposited into the society account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| value | BalanceOf<T, I> |
u128 |
Founded¶
The society is founded by the given identity.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| founder | T::AccountId |
AccountId |
Inducted¶
A group of candidates have been inducted. The batch's primary is the first value, the batch in full is the second.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| primary | T::AccountId |
AccountId |
| candidates | Vec<T::AccountId> |
['AccountId'] |
MemberSuspended¶
A member has been suspended
Attributes¶
| Name | Type | Composition |
|---|---|---|
| member | T::AccountId |
AccountId |
NewMaxMembers¶
A new [max] member count has been set
Attributes¶
| Name | Type | Composition |
|---|---|---|
| max | u32 |
u32 |
SuspendedMemberJudgement¶
A suspended member has been judged.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| judged | bool |
bool |
Unbid¶
A candidate was dropped (by their request).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | T::AccountId |
AccountId |
Unfounded¶
Society is unfounded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| founder | T::AccountId |
AccountId |
Unvouch¶
A candidate was dropped (by request of who vouched for them).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | T::AccountId |
AccountId |
Vote¶
A vote has been placed
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate | T::AccountId |
AccountId |
| voter | T::AccountId |
AccountId |
| vote | bool |
bool |
Vouch¶
A membership bid just happened by vouching. The given account is the candidate's ID and their offer is the second. The vouching party is the third.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| candidate_id | T::AccountId |
AccountId |
| offer | BalanceOf<T, I> |
u128 |
| vouching | T::AccountId |
AccountId |
Storage functions¶
Bids¶
The current bids, stored ordered by the value of the bid.
Python¶
result = substrate.query(
'Society', 'Bids', []
)
Return value¶
[
{'kind': {'Deposit': 'u128', 'Vouch': ('AccountId', 'u128')}, 'value': 'u128', 'who': 'AccountId'},
]
Candidates¶
The current set of candidates; bidders that are attempting to become members.
Python¶
result = substrate.query(
'Society', 'Candidates', []
)
Return value¶
[
{'kind': {'Deposit': 'u128', 'Vouch': ('AccountId', 'u128')}, 'value': 'u128', 'who': 'AccountId'},
]
Defender¶
The defending member currently being challenged.
Python¶
result = substrate.query(
'Society', 'Defender', []
)
Return value¶
'AccountId'
DefenderVotes¶
Votes for the defender.
Python¶
result = substrate.query(
'Society', 'DefenderVotes', ['AccountId']
)
Return value¶
('Skeptic', 'Reject', 'Approve')
Founder¶
The first member.
Python¶
result = substrate.query(
'Society', 'Founder', []
)
Return value¶
'AccountId'
Head¶
The most primary from the most recently approved members.
Python¶
result = substrate.query(
'Society', 'Head', []
)
Return value¶
'AccountId'
MaxMembers¶
The max number of members for the society at one time.
Python¶
result = substrate.query(
'Society', 'MaxMembers', []
)
Return value¶
'u32'
Members¶
The current set of members, ordered.
Python¶
result = substrate.query(
'Society', 'Members', []
)
Return value¶
['AccountId']
Payouts¶
Pending payouts; ordered by block number, with the amount that should be paid out.
Python¶
result = substrate.query(
'Society', 'Payouts', ['AccountId']
)
Return value¶
[('u32', 'u128')]
Pot¶
Amount of our account balance that is specifically for the next round's bid(s).
Python¶
result = substrate.query(
'Society', 'Pot', []
)
Return value¶
'u128'
Rules¶
A hash of the rules of this society concerning membership. Can only be set once and only by the founder.
Python¶
result = substrate.query(
'Society', 'Rules', []
)
Return value¶
'[u8; 32]'
Strikes¶
The ongoing number of losing votes cast by the member.
Python¶
result = substrate.query(
'Society', 'Strikes', ['AccountId']
)
Return value¶
'u32'
SuspendedCandidates¶
The set of suspended candidates.
Python¶
result = substrate.query(
'Society', 'SuspendedCandidates', ['AccountId']
)
Return value¶
('u128', {'Deposit': 'u128', 'Vouch': ('AccountId', 'u128')})
SuspendedMembers¶
The set of suspended members.
Python¶
result = substrate.query(
'Society', 'SuspendedMembers', ['AccountId']
)
Return value¶
'bool'
Votes¶
Double map from Candidate -> Voter -> (Maybe) Vote.
Python¶
result = substrate.query(
'Society', 'Votes', ['AccountId', 'AccountId']
)
Return value¶
('Skeptic', 'Reject', 'Approve')
Vouching¶
Members currently vouching or banned from vouching again
Python¶
result = substrate.query(
'Society', 'Vouching', ['AccountId']
)
Return value¶
('Vouching', 'Banned')
Constants¶
CandidateDeposit¶
The minimum amount of a deposit required for a bid to be made.
Value¶
333333333330
Python¶
constant = substrate.get_constant('Society', 'CandidateDeposit')
ChallengePeriod¶
The number of blocks between membership challenges.
Value¶
100800
Python¶
constant = substrate.get_constant('Society', 'ChallengePeriod')
MaxCandidateIntake¶
The maximum number of candidates that we accept per round.
Value¶
1
Python¶
constant = substrate.get_constant('Society', 'MaxCandidateIntake')
MaxLockDuration¶
The maximum duration of the payout lock.
Value¶
15552000
Python¶
constant = substrate.get_constant('Society', 'MaxLockDuration')
MaxStrikes¶
The number of times a member may vote the wrong way (or not at all, when they are a skeptic) before they become suspended.
Value¶
10
Python¶
constant = substrate.get_constant('Society', 'MaxStrikes')
PalletId¶
The societies's pallet id
Value¶
'0x70792f736f636965'
Python¶
constant = substrate.get_constant('Society', 'PalletId')
PeriodSpend¶
The amount of incentive paid within each period. Doesn't include VoterTip.
Value¶
16666666666500
Python¶
constant = substrate.get_constant('Society', 'PeriodSpend')
RotationPeriod¶
The number of blocks between candidate/membership rotation periods.
Value¶
100800
Python¶
constant = substrate.get_constant('Society', 'RotationPeriod')
WrongSideDeduction¶
The amount of the unpaid reward that gets deducted in the case that either a skeptic doesn't vote or someone votes in the wrong way.
Value¶
66666666666
Python¶
constant = substrate.get_constant('Society', 'WrongSideDeduction')
Errors¶
AlreadyBid¶
User has already made a bid.
AlreadyCandidate¶
User is already a candidate.
AlreadyFounded¶
Society already founded.
AlreadyMember¶
User is already a member.
AlreadyVouching¶
Member is already vouching or banned from vouching again.
BadPosition¶
An incorrect position was provided.
Founder¶
Cannot remove the founder.
Head¶
Cannot remove the head of the chain.
InsufficientPot¶
Not enough in pot to accept candidate.
MaxMembers¶
Too many members in the society.
NoPayout¶
Nothing to payout.
NotCandidate¶
User is not a candidate.
NotFounder¶
The caller is not the founder.
NotHead¶
The caller is not the head.
NotMember¶
User is not a member.
NotSuspended¶
User is not suspended.
NotVouching¶
Member is not vouching.
Suspended¶
User is suspended.
Staking¶
Calls¶
bond¶
Take the origin account as a stash and lock up value of its balance. controller will
be the account that controls it.
value must be more than the minimum_balance specified by T::Currency.
The dispatch origin for this call must be Signed by the stash account.
Emits Bonded.
# <weight>
- Independent of the arguments. Moderate complexity.
- O(1).
- Three extra DB entries.
NOTE: Two of the storage writes (Self::bonded, Self::payee) are never cleaned
unless the origin falls below existential deposit and gets removed as dust.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| controller | AccountIdLookupOf<T> |
| value | BalanceOf<T> |
| payee | RewardDestination<T::AccountId> |
Python¶
call = substrate.compose_call(
'Staking', 'bond', {
'controller': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'payee': {
'Account': 'AccountId',
'Controller': None,
'None': None,
'Staked': None,
'Stash': None,
},
'value': 'u128',
}
)
bond_extra¶
Add some extra amount that have appeared in the stash free_balance into the balance up
for staking.
The dispatch origin for this call must be Signed by the stash, not the controller.
Use this if there are additional funds in your stash account that you wish to bond.
Unlike bond or unbond this function does not impose
any limitation on the amount that can be added.
Emits Bonded.
# <weight> - Independent of the arguments. Insignificant complexity. - O(1). # </weight>
Attributes¶
| Name | Type |
|---|---|
| max_additional | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Staking', 'bond_extra', {'max_additional': 'u128'}
)
cancel_deferred_slash¶
Cancel enactment of a deferred slash.
Can be called by the T::AdminOrigin.
Parameters: era and indices of the slashes for that era to kill.
Attributes¶
| Name | Type |
|---|---|
| era | EraIndex |
| slash_indices | Vec<u32> |
Python¶
call = substrate.compose_call(
'Staking', 'cancel_deferred_slash', {
'era': 'u32',
'slash_indices': ['u32'],
}
)
chill¶
Declare no desire to either validate or nominate.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
# <weight>
- Independent of the arguments. Insignificant complexity.
- Contains one read.
- Writes are limited to the origin account key.
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Staking', 'chill', {}
)
chill_other¶
Declare a controller to stop participating as either a validator or nominator.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed, but can be called by anyone.
If the caller is the same as the controller being targeted, then no further checks are
enforced, and this function behaves just like chill.
If the caller is different than the controller being targeted, the following conditions must be met:
controllermust belong to a nominator who has become non-decodable,
Or:
- A
ChillThresholdmust be set and checked which defines how close to the max nominators or validators we must reach before users can start chilling one-another. - A
MaxNominatorCountandMaxValidatorCountmust be set which is used to determine how close we are to the threshold. - A
MinNominatorBondandMinValidatorBondmust be set and checked, which determines if this is a person that should be chilled because they have not met the threshold bond required.
This can be helpful if bond requirements are updated, and we need to remove old users who do not satisfy these requirements.
Attributes¶
| Name | Type |
|---|---|
| controller | T::AccountId |
Python¶
call = substrate.compose_call(
'Staking', 'chill_other', {'controller': 'AccountId'}
)
force_apply_min_commission¶
Force a validator to have at least the minimum commission. This will not affect a validator who already has a commission greater than or equal to the minimum. Any account can call this.
Attributes¶
| Name | Type |
|---|---|
| validator_stash | T::AccountId |
Python¶
call = substrate.compose_call(
'Staking', 'force_apply_min_commission', {'validator_stash': 'AccountId'}
)
force_new_era¶
Force there to be a new era at the end of the next session. After this, it will be reset to normal (non-forced) behaviour.
The dispatch origin must be Root.
# Warning
The election process starts multiple blocks before the end of the era. If this is called just before a new era is triggered, the election process may not have enough blocks to get a result.
# <weight> - No arguments. - Weight: O(1) - Write ForceEra # </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Staking', 'force_new_era', {}
)
force_new_era_always¶
Force there to be a new era at the end of sessions indefinitely.
The dispatch origin must be Root.
# Warning
The election process starts multiple blocks before the end of the era. If this is called just before a new era is triggered, the election process may not have enough blocks to get a result.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Staking', 'force_new_era_always', {}
)
force_no_eras¶
Force there to be no new eras indefinitely.
The dispatch origin must be Root.
# Warning
The election process starts multiple blocks before the end of the era. Thus the election process may be ongoing when this is called. In this case the election will continue until the next era is triggered.
# <weight> - No arguments. - Weight: O(1) - Write: ForceEra # </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Staking', 'force_no_eras', {}
)
force_unstake¶
Force a current staker to become completely unstaked, immediately.
The dispatch origin must be Root.
Attributes¶
| Name | Type |
|---|---|
| stash | T::AccountId |
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'Staking', 'force_unstake', {
'num_slashing_spans': 'u32',
'stash': 'AccountId',
}
)
increase_validator_count¶
Increments the ideal number of validators upto maximum of
ElectionProviderBase::MaxWinners.
The dispatch origin must be Root.
# <weight>
Same as [Self::set_validator_count].
# </weight>
Attributes¶
| Name | Type |
|---|---|
| additional | u32 |
Python¶
call = substrate.compose_call(
'Staking', 'increase_validator_count', {'additional': 'u32'}
)
kick¶
Remove the given nominations from the calling validator.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
who: A list of nominator stash accounts who are nominating this validator which should no longer be nominating this validator.
Note: Making this call only makes sense if you first set the validator preferences to block any further nominations.
Attributes¶
| Name | Type |
|---|---|
| who | Vec<AccountIdLookupOf<T>> |
Python¶
call = substrate.compose_call(
'Staking', 'kick', {
'who': [
{
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
],
}
)
nominate¶
Declare the desire to nominate targets for the origin controller.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
# <weight>
- The transaction's complexity is proportional to the size of targets (N)
which is capped at CompactAssignments::LIMIT (T::MaxNominations).
- Both the reads and writes follow a similar pattern.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| targets | Vec<AccountIdLookupOf<T>> |
Python¶
call = substrate.compose_call(
'Staking', 'nominate', {
'targets': [
{
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
],
}
)
payout_stakers¶
Pay out all the stakers behind a single validator for a single era.
validator_stashis the stash account of the validator. Their nominators, up toT::MaxNominatorRewardedPerValidator, will also receive their rewards.eramay be any era between[current_era - history_depth; current_era].
The origin of this call must be Signed. Any account can call this function, even if it is not one of the stakers.
# <weight> - Time complexity: at most O(MaxNominatorRewardedPerValidator). - Contains a limited number of reads and writes.
N is the Number of payouts for the validator (including the validator) Weight: - Reward Destination Staked: O(N) - Reward Destination Controller (Creating): O(N)
NOTE: weights are assuming that payouts are made to alive stash account (Staked). Paying even a dead controller is cheaper weight-wise. We don't do any refunds here. # </weight>
Attributes¶
| Name | Type |
|---|---|
| validator_stash | T::AccountId |
| era | EraIndex |
Python¶
call = substrate.compose_call(
'Staking', 'payout_stakers', {
'era': 'u32',
'validator_stash': 'AccountId',
}
)
reap_stash¶
Remove all data structures concerning a staker/stash once it is at a state where it can
be considered dust in the staking system. The requirements are:
- the
total_balanceof the stash is below existential deposit. - or, the
ledger.totalof the stash is below existential deposit.
The former can happen in cases like a slash; the latter when a fully unbonded account
is still receiving staking rewards in RewardDestination::Staked.
It can be called by anyone, as long as stash meets the above requirements.
Refunds the transaction fees upon successful execution.
Attributes¶
| Name | Type |
|---|---|
| stash | T::AccountId |
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'Staking', 'reap_stash', {
'num_slashing_spans': 'u32',
'stash': 'AccountId',
}
)
rebond¶
Rebond a portion of the stash scheduled to be unlocked.
The dispatch origin must be signed by the controller.
# <weight>
- Time complexity: O(L), where L is unlocking chunks
- Bounded by MaxUnlockingChunks.
- Storage changes: Can't increase storage, only decrease it.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Staking', 'rebond', {'value': 'u128'}
)
scale_validator_count¶
Scale up the ideal number of validators by a factor upto maximum of
ElectionProviderBase::MaxWinners.
The dispatch origin must be Root.
# <weight>
Same as [Self::set_validator_count].
# </weight>
Attributes¶
| Name | Type |
|---|---|
| factor | Percent |
Python¶
call = substrate.compose_call(
'Staking', 'scale_validator_count', {'factor': 'u8'}
)
set_controller¶
(Re-)set the controller of a stash.
Effects will be felt instantly (as soon as this function is completed successfully).
The dispatch origin for this call must be Signed by the stash, not the controller.
# <weight>
- Independent of the arguments. Insignificant complexity.
- Contains a limited number of reads.
- Writes are limited to the origin account key.
Weight: O(1) DB Weight: - Read: Bonded, Ledger New Controller, Ledger Old Controller - Write: Bonded, Ledger New Controller, Ledger Old Controller # </weight>
Attributes¶
| Name | Type |
|---|---|
| controller | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Staking', 'set_controller', {
'controller': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_invulnerables¶
Set the validators who cannot be slashed (if any).
The dispatch origin must be Root.
Attributes¶
| Name | Type |
|---|---|
| invulnerables | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'Staking', 'set_invulnerables', {'invulnerables': ['AccountId']}
)
set_min_commission¶
Sets the minimum amount of commission that each validators must maintain.
This call has lower privilege requirements than set_staking_config and can be called
by the T::AdminOrigin. Root can always call this.
Attributes¶
| Name | Type |
|---|---|
| new | Perbill |
Python¶
call = substrate.compose_call(
'Staking', 'set_min_commission', {'new': 'u32'}
)
set_payee¶
(Re-)set the payment target for a controller.
Effects will be felt instantly (as soon as this function is completed successfully).
The dispatch origin for this call must be Signed by the controller, not the stash.
# <weight>
- Independent of the arguments. Insignificant complexity.
- Contains a limited number of reads.
- Writes are limited to the origin account key.
- Weight: O(1)
- DB Weight:
- Read: Ledger
- Write: Payee # </weight>
Attributes¶
| Name | Type |
|---|---|
| payee | RewardDestination<T::AccountId> |
Python¶
call = substrate.compose_call(
'Staking', 'set_payee', {
'payee': {
'Account': 'AccountId',
'Controller': None,
'None': None,
'Staked': None,
'Stash': None,
},
}
)
set_staking_configs¶
Update the various staking configurations .
min_nominator_bond: The minimum active bond needed to be a nominator.min_validator_bond: The minimum active bond needed to be a validator.max_nominator_count: The max number of users who can be a nominator at once. When set toNone, no limit is enforced.max_validator_count: The max number of users who can be a validator at once. When set toNone, no limit is enforced.chill_threshold: The ratio ofmax_nominator_countormax_validator_countwhich should be filled in order for thechill_othertransaction to work.min_commission: The minimum amount of commission that each validators must maintain. This is checked only upon callingvalidate. Existing validators are not affected.
RuntimeOrigin must be Root to call this function.
NOTE: Existing nominators and validators will not be affected by this update.
to kick people under the new limits, chill_other should be called.
Attributes¶
| Name | Type |
|---|---|
| min_nominator_bond | ConfigOp<BalanceOf<T>> |
| min_validator_bond | ConfigOp<BalanceOf<T>> |
| max_nominator_count | ConfigOp<u32> |
| max_validator_count | ConfigOp<u32> |
| chill_threshold | ConfigOp<Percent> |
| min_commission | ConfigOp<Perbill> |
Python¶
call = substrate.compose_call(
'Staking', 'set_staking_configs', {
'chill_threshold': {
'Noop': None,
'Remove': None,
'Set': 'u8',
},
'max_nominator_count': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'max_validator_count': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'min_commission': {
'Noop': None,
'Remove': None,
'Set': 'u32',
},
'min_nominator_bond': {
'Noop': None,
'Remove': None,
'Set': 'u128',
},
'min_validator_bond': {
'Noop': None,
'Remove': None,
'Set': 'u128',
},
}
)
set_validator_count¶
Sets the ideal number of validators.
The dispatch origin must be Root.
# <weight> Weight: O(1) Write: Validator Count # </weight>
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'Staking', 'set_validator_count', {'new': 'u32'}
)
unbond¶
Schedule a portion of the stash to be unlocked ready for transfer out after the bond period ends. If this leaves an amount actively bonded less than T::Currency::minimum_balance(), then it is increased to the full amount.
The dispatch origin for this call must be Signed by the controller, not the stash.
Once the unlock period is done, you can call withdraw_unbonded to actually move
the funds out of management ready for transfer.
No more than a limited number of unlocking chunks (see MaxUnlockingChunks)
can co-exists at the same time. If there are no unlocking chunks slots available
[Call::withdraw_unbonded] is called to remove some of the chunks (if possible).
If a user encounters the InsufficientBond error when calling this extrinsic,
they should call chill first in order to free up their bonded funds.
Emits Unbonded.
See also [Call::withdraw_unbonded].
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Staking', 'unbond', {'value': 'u128'}
)
validate¶
Declare the desire to validate for the origin controller.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
Attributes¶
| Name | Type |
|---|---|
| prefs | ValidatorPrefs |
Python¶
call = substrate.compose_call(
'Staking', 'validate', {
'prefs': {
'blocked': 'bool',
'commission': 'u32',
},
}
)
withdraw_unbonded¶
Remove any unlocked chunks from the unlocking queue from our management.
This essentially frees up that balance to be used by the stash account to do whatever it wants.
The dispatch origin for this call must be Signed by the controller.
Emits Withdrawn.
See also [Call::unbond].
# <weight> Complexity O(S) where S is the number of slashing spans to remove NOTE: Weight annotation is the kill scenario, we refund otherwise. # </weight>
Attributes¶
| Name | Type |
|---|---|
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'Staking', 'withdraw_unbonded', {'num_slashing_spans': 'u32'}
)
Events¶
Bonded¶
An account has bonded this amount. [stash, amount]
NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably, it will not be emitted for staking rewards when they are added to stake.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Chilled¶
An account has stopped participating as either a validator or nominator.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
EraPaid¶
The era payout has been set; the first balance is the validator-payout; the second is the remainder from the maximum amount of reward.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| era_index | EraIndex |
u32 |
| validator_payout | BalanceOf<T> |
u128 |
| remainder | BalanceOf<T> |
u128 |
ForceEra¶
A new force era mode was set.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| mode | Forcing |
('NotForcing', 'ForceNew', 'ForceNone', 'ForceAlways') |
Kicked¶
A nominator has been kicked from a validator.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| nominator | T::AccountId |
AccountId |
| stash | T::AccountId |
AccountId |
OldSlashingReportDiscarded¶
An old slashing report from a prior era was discarded because it could not be processed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| session_index | SessionIndex |
u32 |
PayoutStarted¶
The stakers' rewards are getting paid.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| era_index | EraIndex |
u32 |
| validator_stash | T::AccountId |
AccountId |
Rewarded¶
The nominator has been rewarded by this amount.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
SlashReported¶
A slash for the given validator, for the given percentage of their stake, at the given era as been reported.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| validator | T::AccountId |
AccountId |
| fraction | Perbill |
u32 |
| slash_era | EraIndex |
u32 |
Slashed¶
A staker (validator or nominator) has been slashed by the given amount.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| staker | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
StakersElected¶
A new set of stakers was elected.
Attributes¶
No attributes
StakingElectionFailed¶
The election failed. No new era is planned.
Attributes¶
No attributes
Unbonded¶
An account has unbonded this amount.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
ValidatorPrefsSet¶
A validator has set their preferences.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| prefs | ValidatorPrefs |
{'commission': 'u32', 'blocked': 'bool'} |
Withdrawn¶
An account has called withdraw_unbonded and removed unbonding chunks worth Balance
from the unlocking queue.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| stash | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Storage functions¶
ActiveEra¶
The active era information, it holds index and start.
The active era is the era being currently rewarded. Validator set of this era must be
equal to [SessionInterface::validators].
Python¶
result = substrate.query(
'Staking', 'ActiveEra', []
)
Return value¶
{'index': 'u32', 'start': (None, 'u64')}
Bonded¶
Map from all locked "stash" accounts to the controller account.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'Staking', 'Bonded', ['AccountId']
)
Return value¶
'AccountId'
BondedEras¶
A mapping from still-bonded eras to the first session index of that era.
Must contains information for eras for the range:
[active_era - bounding_duration; active_era]
Python¶
result = substrate.query(
'Staking', 'BondedEras', []
)
Return value¶
[('u32', 'u32')]
CanceledSlashPayout¶
The amount of currency given to reporters of a slash event which was canceled by extraordinary circumstances (e.g. governance).
Python¶
result = substrate.query(
'Staking', 'CanceledSlashPayout', []
)
Return value¶
'u128'
ChillThreshold¶
The threshold for when users can start calling chill_other for other validators /
nominators. The threshold is compared to the actual number of validators / nominators
(CountFor*) in the system compared to the configured max (Max*Count).
Python¶
result = substrate.query(
'Staking', 'ChillThreshold', []
)
Return value¶
'u8'
CounterForNominators¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'Staking', 'CounterForNominators', []
)
Return value¶
'u32'
CounterForValidators¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'Staking', 'CounterForValidators', []
)
Return value¶
'u32'
CurrentEra¶
The current era index.
This is the latest planned era, depending on how the Session pallet queues the validator set, it might be active or not.
Python¶
result = substrate.query(
'Staking', 'CurrentEra', []
)
Return value¶
'u32'
CurrentPlannedSession¶
The last planned session scheduled by the session pallet.
This is basically in sync with the call to [pallet_session::SessionManager::new_session].
Python¶
result = substrate.query(
'Staking', 'CurrentPlannedSession', []
)
Return value¶
'u32'
ErasRewardPoints¶
Rewards for the last HISTORY_DEPTH eras.
If reward hasn't been set or has been removed then 0 reward is returned.
Python¶
result = substrate.query(
'Staking', 'ErasRewardPoints', ['u32']
)
Return value¶
{'individual': 'scale_info::545', 'total': 'u32'}
ErasStakers¶
Exposure of validator at era.
This is keyed first by the era index to allow bulk deletion and then the stash account.
Is it removed after HISTORY_DEPTH eras.
If stakers hasn't been set or has been removed then empty exposure is returned.
Python¶
result = substrate.query(
'Staking', 'ErasStakers', ['u32', 'AccountId']
)
Return value¶
{'others': [{'value': 'u128', 'who': 'AccountId'}], 'own': 'u128', 'total': 'u128'}
ErasStakersClipped¶
Clipped Exposure of validator at era.
This is similar to [ErasStakers] but number of nominators exposed is reduced to the
T::MaxNominatorRewardedPerValidator biggest stakers.
(Note: the field total and own of the exposure remains unchanged).
This is used to limit the i/o cost for the nominator payout.
This is keyed fist by the era index to allow bulk deletion and then the stash account.
Is it removed after HISTORY_DEPTH eras.
If stakers hasn't been set or has been removed then empty exposure is returned.
Python¶
result = substrate.query(
'Staking', 'ErasStakersClipped', ['u32', 'AccountId']
)
Return value¶
{'others': [{'value': 'u128', 'who': 'AccountId'}], 'own': 'u128', 'total': 'u128'}
ErasStartSessionIndex¶
The session index at which the era start for the last HISTORY_DEPTH eras.
Note: This tracks the starting session (i.e. session index when era start being active)
for the eras in [CurrentEra - HISTORY_DEPTH, CurrentEra].
Python¶
result = substrate.query(
'Staking', 'ErasStartSessionIndex', ['u32']
)
Return value¶
'u32'
ErasTotalStake¶
The total amount staked for the last HISTORY_DEPTH eras.
If total hasn't been set or has been removed then 0 stake is returned.
Python¶
result = substrate.query(
'Staking', 'ErasTotalStake', ['u32']
)
Return value¶
'u128'
ErasValidatorPrefs¶
Similar to ErasStakers, this holds the preferences of validators.
This is keyed first by the era index to allow bulk deletion and then the stash account.
Is it removed after HISTORY_DEPTH eras.
Python¶
result = substrate.query(
'Staking', 'ErasValidatorPrefs', ['u32', 'AccountId']
)
Return value¶
{'blocked': 'bool', 'commission': 'u32'}
ErasValidatorReward¶
The total validator era payout for the last HISTORY_DEPTH eras.
Eras that haven't finished yet or has been removed doesn't have reward.
Python¶
result = substrate.query(
'Staking', 'ErasValidatorReward', ['u32']
)
Return value¶
'u128'
ForceEra¶
Mode of era forcing.
Python¶
result = substrate.query(
'Staking', 'ForceEra', []
)
Return value¶
('NotForcing', 'ForceNew', 'ForceNone', 'ForceAlways')
Invulnerables¶
Any validators that may never be slashed or forcibly kicked. It's a Vec since they're easy to initialize and the performance hit is minimal (we expect no more than four invulnerables) and restricted to testnets.
Python¶
result = substrate.query(
'Staking', 'Invulnerables', []
)
Return value¶
['AccountId']
Ledger¶
Map from all (unlocked) "controller" accounts to the info regarding the staking.
Python¶
result = substrate.query(
'Staking', 'Ledger', ['AccountId']
)
Return value¶
{
'active': 'u128',
'claimed_rewards': ['u32'],
'stash': 'AccountId',
'total': 'u128',
'unlocking': [{'era': 'u32', 'value': 'u128'}],
}
MaxNominatorsCount¶
The maximum nominator count before we stop allowing new validators to join.
When this value is not set, no limits are enforced.
Python¶
result = substrate.query(
'Staking', 'MaxNominatorsCount', []
)
Return value¶
'u32'
MaxValidatorsCount¶
The maximum validator count before we stop allowing new validators to join.
When this value is not set, no limits are enforced.
Python¶
result = substrate.query(
'Staking', 'MaxValidatorsCount', []
)
Return value¶
'u32'
MinCommission¶
The minimum amount of commission that validators can set.
If set to 0, no limit exists.
Python¶
result = substrate.query(
'Staking', 'MinCommission', []
)
Return value¶
'u32'
MinNominatorBond¶
The minimum active bond to become and maintain the role of a nominator.
Python¶
result = substrate.query(
'Staking', 'MinNominatorBond', []
)
Return value¶
'u128'
MinValidatorBond¶
The minimum active bond to become and maintain the role of a validator.
Python¶
result = substrate.query(
'Staking', 'MinValidatorBond', []
)
Return value¶
'u128'
MinimumActiveStake¶
The minimum active nominator stake of the last successful election.
Python¶
result = substrate.query(
'Staking', 'MinimumActiveStake', []
)
Return value¶
'u128'
MinimumValidatorCount¶
Minimum number of staking participants before emergency conditions are imposed.
Python¶
result = substrate.query(
'Staking', 'MinimumValidatorCount', []
)
Return value¶
'u32'
NominatorSlashInEra¶
All slashing events on nominators, mapped by era to the highest slash value of the era.
Python¶
result = substrate.query(
'Staking', 'NominatorSlashInEra', ['u32', 'AccountId']
)
Return value¶
'u128'
Nominators¶
The map from nominator stash key to their nomination preferences, namely the validators that they wish to support.
Note that the keys of this storage map might become non-decodable in case the
[Config::MaxNominations] configuration is decreased. In this rare case, these nominators
are still existent in storage, their key is correct and retrievable (i.e. contains_key
indicates that they exist), but their value cannot be decoded. Therefore, the non-decodable
nominators will effectively not-exist, until they re-submit their preferences such that it
is within the bounds of the newly set Config::MaxNominations.
This implies that ::iter_keys().count() and ::iter().count() might return different
values for this map. Moreover, the main ::count() is aligned with the former, namely the
number of keys that exist.
Lastly, if any of the nominators become non-decodable, they can be chilled immediately via
[Call::chill_other] dispatchable by anyone.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'Staking', 'Nominators', ['AccountId']
)
Return value¶
{'submitted_in': 'u32', 'suppressed': 'bool', 'targets': ['AccountId']}
OffendingValidators¶
Indices of validators that have offended in the active era and whether they are currently disabled.
This value should be a superset of disabled validators since not all offences lead to the
validator being disabled (if there was no slash). This is needed to track the percentage of
validators that have offended in the current era, ensuring a new era is forced if
OffendingValidatorsThreshold is reached. The vec is always kept sorted so that we can find
whether a given validator has previously offended using binary search. It gets cleared when
the era ends.
Python¶
result = substrate.query(
'Staking', 'OffendingValidators', []
)
Return value¶
[('u32', 'bool')]
Payee¶
Where the reward payment should be made. Keyed by stash.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'Staking', 'Payee', ['AccountId']
)
Return value¶
{
'Account': 'AccountId',
'Controller': None,
'None': None,
'Staked': None,
'Stash': None,
}
SlashRewardFraction¶
The percentage of the slash that is distributed to reporters.
The rest of the slashed value is handled by the Slash.
Python¶
result = substrate.query(
'Staking', 'SlashRewardFraction', []
)
Return value¶
'u32'
SlashingSpans¶
Slashing spans for stash accounts.
Python¶
result = substrate.query(
'Staking', 'SlashingSpans', ['AccountId']
)
Return value¶
{
'last_nonzero_slash': 'u32',
'last_start': 'u32',
'prior': ['u32'],
'span_index': 'u32',
}
SpanSlash¶
Records information about the maximum slash of a stash within a slashing span, as well as how much reward has been paid out.
Python¶
result = substrate.query(
'Staking', 'SpanSlash', [('AccountId', 'u32')]
)
Return value¶
{'paid_out': 'u128', 'slashed': 'u128'}
UnappliedSlashes¶
All unapplied slashes that are queued for later.
Python¶
result = substrate.query(
'Staking', 'UnappliedSlashes', ['u32']
)
Return value¶
[
{
'others': [('AccountId', 'u128')],
'own': 'u128',
'payout': 'u128',
'reporters': ['AccountId'],
'validator': 'AccountId',
},
]
ValidatorCount¶
The ideal number of active validators.
Python¶
result = substrate.query(
'Staking', 'ValidatorCount', []
)
Return value¶
'u32'
ValidatorSlashInEra¶
All slashing events on validators, mapped by era to the highest slash proportion and slash value of the era.
Python¶
result = substrate.query(
'Staking', 'ValidatorSlashInEra', ['u32', 'AccountId']
)
Return value¶
('u32', 'u128')
Validators¶
The map from (wannabe) validator stash key to the preferences of that validator.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python¶
result = substrate.query(
'Staking', 'Validators', ['AccountId']
)
Return value¶
{'blocked': 'bool', 'commission': 'u32'}
Constants¶
BondingDuration¶
Number of eras that staked funds must remain bonded for.
Value¶
28
Python¶
constant = substrate.get_constant('Staking', 'BondingDuration')
HistoryDepth¶
Number of eras to keep in history.
Following information is kept for eras in [current_era -
HistoryDepth, current_era]: ErasStakers, ErasStakersClipped,
ErasValidatorPrefs, ErasValidatorReward, ErasRewardPoints,
ErasTotalStake, ErasStartSessionIndex,
StakingLedger.claimed_rewards.
Must be more than the number of eras delayed by session.
I.e. active era must always be in history. I.e. active_era >
current_era - history_depth must be guaranteed.
If migrating an existing pallet from storage value to config value, this should be set to same value or greater as in storage.
Note: HistoryDepth is used as the upper bound for the BoundedVec
item StakingLedger.claimed_rewards. Setting this value lower than
the existing value can lead to inconsistencies in the
StakingLedger and will need to be handled properly in a migration.
The test reducing_history_depth_abrupt shows this effect.
Value¶
84
Python¶
constant = substrate.get_constant('Staking', 'HistoryDepth')
MaxNominations¶
Maximum number of nominations per nominator.
Value¶
24
Python¶
constant = substrate.get_constant('Staking', 'MaxNominations')
MaxNominatorRewardedPerValidator¶
The maximum number of nominators rewarded for each validator.
For each validator only the $MaxNominatorRewardedPerValidator biggest stakers can
claim their reward. This used to limit the i/o cost for the nominator payout.
Value¶
512
Python¶
constant = substrate.get_constant('Staking', 'MaxNominatorRewardedPerValidator')
MaxUnlockingChunks¶
The maximum number of unlocking chunks a [StakingLedger] can
have. Effectively determines how many unique eras a staker may be
unbonding in.
Note: MaxUnlockingChunks is used as the upper bound for the
BoundedVec item StakingLedger.unlocking. Setting this value
lower than the existing value can lead to inconsistencies in the
StakingLedger and will need to be handled properly in a runtime
migration. The test reducing_max_unlocking_chunks_abrupt shows
this effect.
Value¶
32
Python¶
constant = substrate.get_constant('Staking', 'MaxUnlockingChunks')
SessionsPerEra¶
Number of sessions per era.
Value¶
6
Python¶
constant = substrate.get_constant('Staking', 'SessionsPerEra')
SlashDeferDuration¶
Number of eras that slashes are deferred by, after computation.
This should be less than the bonding duration. Set to 0 if slashes should be applied immediately, without opportunity for intervention.
Value¶
27
Python¶
constant = substrate.get_constant('Staking', 'SlashDeferDuration')
Errors¶
AlreadyBonded¶
Stash is already bonded.
AlreadyClaimed¶
Rewards for this era have already been claimed for this validator.
AlreadyPaired¶
Controller is already paired.
BadState¶
Internal state has become somehow corrupted and the operation cannot continue.
BadTarget¶
A nomination target was supplied that was blocked or otherwise not a validator.
BoundNotMet¶
Some bound is not met.
CannotChillOther¶
The user has enough bond and thus cannot be chilled forcefully by an external person.
CommissionTooLow¶
Commission is too low. Must be at least MinCommission.
DuplicateIndex¶
Duplicate index.
EmptyTargets¶
Targets cannot be empty.
FundedTarget¶
Attempting to target a stash that still has funds.
IncorrectHistoryDepth¶
Incorrect previous history depth input provided.
IncorrectSlashingSpans¶
Incorrect number of slashing spans provided.
InsufficientBond¶
Cannot have a validator or nominator role, with value less than the minimum defined by
governance (see MinValidatorBond and MinNominatorBond). If unbonding is the
intention, chill first to remove one's role as validator/nominator.
InvalidEraToReward¶
Invalid era to reward.
InvalidNumberOfNominations¶
Invalid number of nominations.
InvalidSlashIndex¶
Slash record index out of bounds.
NoMoreChunks¶
Can not schedule more unlock chunks.
NoUnlockChunk¶
Can not rebond without unlocking chunks.
NotController¶
Not a controller account.
NotSortedAndUnique¶
Items are not sorted and unique.
NotStash¶
Not a stash account.
TooManyNominators¶
There are too many nominators in the system. Governance needs to adjust the staking settings to keep things safe for the runtime.
TooManyTargets¶
Too many nomination targets supplied.
TooManyValidators¶
There are too many validator candidates in the system. Governance needs to adjust the staking settings to keep things safe for the runtime.
System¶
Calls¶
kill_prefix¶
Kill all storage items with a key that starts with the given prefix.
NOTE: We rely on the Root origin to provide us the number of subkeys under the prefix we are removing to accurately calculate the weight of this function.
Attributes¶
| Name | Type |
|---|---|
| prefix | Key |
| subkeys | u32 |
Python¶
call = substrate.compose_call(
'System', 'kill_prefix', {'prefix': 'Bytes', 'subkeys': 'u32'}
)
kill_storage¶
Kill some items from storage.
Attributes¶
| Name | Type |
|---|---|
| keys | Vec<Key> |
Python¶
call = substrate.compose_call(
'System', 'kill_storage', {'keys': ['Bytes']}
)
remark¶
Make some on-chain remark.
# <weight>
- O(1)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark', {'remark': 'Bytes'}
)
remark_with_event¶
Make some on-chain remark and emit event.
Attributes¶
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark_with_event', {'remark': 'Bytes'}
)
set_code¶
Set the new runtime code.
# <weight>
- O(C + S) where C length of code and S complexity of can_set_code
- 1 call to can_set_code: O(S) (calls sp_io::misc::runtime_version which is
expensive).
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime, but generally this is very
expensive. We will treat this as a full block.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code', {'code': 'Bytes'}
)
set_code_without_checks¶
Set the new runtime code without doing any checks of the given code.
# <weight>
- O(C) where C length of code
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime. We will treat this as a full
block. # </weight>
Attributes¶
| Name | Type |
|---|---|
| code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code_without_checks', {'code': 'Bytes'}
)
set_heap_pages¶
Set the number of pages in the WebAssembly environment's heap.
Attributes¶
| Name | Type |
|---|---|
| pages | u64 |
Python¶
call = substrate.compose_call(
'System', 'set_heap_pages', {'pages': 'u64'}
)
set_storage¶
Set some items of storage.
Attributes¶
| Name | Type |
|---|---|
| items | Vec<KeyValue> |
Python¶
call = substrate.compose_call(
'System', 'set_storage', {'items': [('Bytes', 'Bytes')]}
)
Events¶
CodeUpdated¶
:code was updated.
Attributes¶
No attributes
ExtrinsicFailed¶
An extrinsic failed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| dispatch_error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
ExtrinsicSuccess¶
An extrinsic completed successfully.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
KilledAccount¶
An account was reaped.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
NewAccount¶
A new account was created.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Remarked¶
On on-chain remark happened.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| hash | T::Hash |
[u8; 32] |
Storage functions¶
Account¶
The full account information for a particular account ID.
Python¶
result = substrate.query(
'System', 'Account', ['AccountId']
)
Return value¶
{
'consumers': 'u32',
'data': {
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
},
'nonce': 'u32',
'providers': 'u32',
'sufficients': 'u32',
}
AllExtrinsicsLen¶
Total length (in bytes) for all extrinsics put together, for the current block.
Python¶
result = substrate.query(
'System', 'AllExtrinsicsLen', []
)
Return value¶
'u32'
BlockHash¶
Map of block numbers to block hashes.
Python¶
result = substrate.query(
'System', 'BlockHash', ['u32']
)
Return value¶
'[u8; 32]'
BlockWeight¶
The current weight for the block.
Python¶
result = substrate.query(
'System', 'BlockWeight', []
)
Return value¶
{
'mandatory': {'proof_size': 'u64', 'ref_time': 'u64'},
'normal': {'proof_size': 'u64', 'ref_time': 'u64'},
'operational': {'proof_size': 'u64', 'ref_time': 'u64'},
}
Digest¶
Digest of the current block, also part of the block header.
Python¶
result = substrate.query(
'System', 'Digest', []
)
Return value¶
{
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': ('[u8; 4]', 'Bytes'),
'PreRuntime': ('[u8; 4]', 'Bytes'),
'RuntimeEnvironmentUpdated': None,
'Seal': ('[u8; 4]', 'Bytes'),
},
],
}
EventCount¶
The number of events in the Events<T> list.
Python¶
result = substrate.query(
'System', 'EventCount', []
)
Return value¶
'u32'
EventTopics¶
Mapping between a topic (represented by T::Hash) and a vector of indexes
of events in the <Events<T>> list.
All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.
The value has the type (T::BlockNumber, EventIndex) because if we used only just
the EventIndex then in case if the topic has the same contents on the next block
no notification will be triggered thus the event might be lost.
Python¶
result = substrate.query(
'System', 'EventTopics', ['[u8; 32]']
)
Return value¶
[('u32', 'u32')]
Events¶
Events deposited for the current block.
NOTE: The item is unbound and should therefore never be read on chain. It could otherwise inflate the PoV size of a block.
Events have a large in-memory size. Box the events to not go out-of-memory just in case someone still reads them from within the runtime.
Python¶
result = substrate.query(
'System', 'Events', []
)
Return value¶
[
{
'event': {
'System': {
'CodeUpdated': None,
'ExtrinsicFailed': {
'dispatch_error': 'scale_info::24',
'dispatch_info': 'scale_info::21',
},
'ExtrinsicSuccess': {'dispatch_info': 'scale_info::21'},
'KilledAccount': {'account': 'AccountId'},
'NewAccount': {'account': 'AccountId'},
'Remarked': {'hash': '[u8; 32]', 'sender': 'AccountId'},
},
None: None,
'Auctions': {
'AuctionClosed': {'auction_index': 'u32'},
'AuctionStarted': {
'auction_index': 'u32',
'ending': 'u32',
'lease_period': 'u32',
},
'BidAccepted': {
'amount': 'u128',
'bidder': 'AccountId',
'first_slot': 'u32',
'last_slot': 'u32',
'para_id': 'u32',
},
'ReserveConfiscated': {
'amount': 'u128',
'leaser': 'AccountId',
'para_id': 'u32',
},
'Reserved': {
'bidder': 'AccountId',
'extra_reserved': 'u128',
'total_amount': 'u128',
},
'Unreserved': {'amount': 'u128', 'bidder': 'AccountId'},
'WinningOffset': {
'auction_index': 'u32',
'block_number': 'u32',
},
},
'Balances': {
'BalanceSet': {
'free': 'u128',
'reserved': 'u128',
'who': 'AccountId',
},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::31',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'Bounties': {
'BountyAwarded': {'beneficiary': 'AccountId', 'index': 'u32'},
'BountyBecameActive': {'index': 'u32'},
'BountyCanceled': {'index': 'u32'},
'BountyClaimed': {
'beneficiary': 'AccountId',
'index': 'u32',
'payout': 'u128',
},
'BountyExtended': {'index': 'u32'},
'BountyProposed': {'index': 'u32'},
'BountyRejected': {'bond': 'u128', 'index': 'u32'},
},
'ChildBounties': {
'Added': {'child_index': 'u32', 'index': 'u32'},
'Awarded': {
'beneficiary': 'AccountId',
'child_index': 'u32',
'index': 'u32',
},
'Canceled': {'child_index': 'u32', 'index': 'u32'},
'Claimed': {
'beneficiary': 'AccountId',
'child_index': 'u32',
'index': 'u32',
'payout': 'u128',
},
},
'Claims': {
'Claimed': {
'amount': 'u128',
'ethereum_address': '[u8; 20]',
'who': 'AccountId',
},
},
'ConvictionVoting': {'Delegated': ('AccountId', 'AccountId'), 'Undelegated': 'AccountId'},
'Council': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::61',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::61',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'Crowdloan': {
'AddedToNewRaise': {'para_id': 'u32'},
'AllRefunded': {'para_id': 'u32'},
'Contributed': {
'amount': 'u128',
'fund_index': 'u32',
'who': 'AccountId',
},
'Created': {'para_id': 'u32'},
'Dissolved': {'para_id': 'u32'},
'Edited': {'para_id': 'u32'},
'HandleBidResult': {
'para_id': 'u32',
'result': 'scale_info::61',
},
'MemoUpdated': {
'memo': 'Bytes',
'para_id': 'u32',
'who': 'AccountId',
},
'PartiallyRefunded': {'para_id': 'u32'},
'Withdrew': {
'amount': 'u128',
'fund_index': 'u32',
'who': 'AccountId',
},
},
'Democracy': {
'Blacklisted': {'proposal_hash': '[u8; 32]'},
'Cancelled': {'ref_index': 'u32'},
'Delegated': {'target': 'AccountId', 'who': 'AccountId'},
'ExternalTabled': None,
'NotPassed': {'ref_index': 'u32'},
'Passed': {'ref_index': 'u32'},
'ProposalCanceled': {'prop_index': 'u32'},
'Proposed': {'deposit': 'u128', 'proposal_index': 'u32'},
'Seconded': {'prop_index': 'u32', 'seconder': 'AccountId'},
'Started': {'ref_index': 'u32', 'threshold': 'scale_info::57'},
'Tabled': {'deposit': 'u128', 'proposal_index': 'u32'},
'Undelegated': {'account': 'AccountId'},
'Vetoed': {
'proposal_hash': '[u8; 32]',
'until': 'u32',
'who': 'AccountId',
},
'Voted': {
'ref_index': 'u32',
'vote': 'scale_info::58',
'voter': 'AccountId',
},
},
'ElectionProviderMultiPhase': {
'ElectionFailed': None,
'ElectionFinalized': {
'compute': 'scale_info::464',
'score': 'scale_info::316',
},
'PhaseTransitioned': {
'from': 'scale_info::465',
'round': 'u32',
'to': 'scale_info::465',
},
'Rewarded': {'account': 'AccountId', 'value': 'u128'},
'Slashed': {'account': 'AccountId', 'value': 'u128'},
'SolutionStored': {
'compute': 'scale_info::464',
'origin': (None, 'AccountId'),
'prev_ejected': 'bool',
},
},
'FastUnstake': {
'BatchChecked': {'eras': ['u32']},
'BatchFinished': None,
'InternalError': None,
'Slashed': {'amount': 'u128', 'stash': 'AccountId'},
'Unstaked': {'result': 'scale_info::61', 'stash': 'AccountId'},
},
'FellowshipCollective': {
'MemberAdded': {'who': 'AccountId'},
'MemberRemoved': {'rank': 'u16', 'who': 'AccountId'},
'RankChanged': {'rank': 'u16', 'who': 'AccountId'},
'Voted': {
'poll': 'u32',
'tally': 'scale_info::442',
'vote': 'scale_info::441',
'who': 'AccountId',
},
},
'FellowshipReferenda': {
'Approved': {'index': 'u32'},
'Cancelled': {'index': 'u32', 'tally': 'scale_info::442'},
'ConfirmAborted': {'index': 'u32'},
'ConfirmStarted': {'index': 'u32'},
'Confirmed': {'index': 'u32', 'tally': 'scale_info::442'},
'DecisionDepositPlaced': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'DecisionDepositRefunded': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'DecisionStarted': {
'index': 'u32',
'proposal': 'scale_info::72',
'tally': 'scale_info::442',
'track': 'u16',
},
'DepositSlashed': {'amount': 'u128', 'who': 'AccountId'},
'Killed': {'index': 'u32', 'tally': 'scale_info::442'},
'Rejected': {'index': 'u32', 'tally': 'scale_info::442'},
'SubmissionDepositRefunded': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'Submitted': {
'index': 'u32',
'proposal': 'scale_info::72',
'track': 'u16',
},
'TimedOut': {'index': 'u32', 'tally': 'scale_info::442'},
},
'Grandpa': {
'NewAuthorities': {'authority_set': [('[u8; 32]', 'u64')]},
'Paused': None,
'Resumed': None,
},
'Hrmp': {
'ChannelClosed': ('u32', 'scale_info::374'),
'HrmpChannelForceOpened': ('u32', 'u32', 'u32', 'u32'),
'OpenChannelAccepted': ('u32', 'u32'),
'OpenChannelCanceled': ('u32', 'scale_info::374'),
'OpenChannelRequested': ('u32', 'u32', 'u32', 'u32'),
},
'Identity': {
'IdentityCleared': {'deposit': 'u128', 'who': 'AccountId'},
'IdentityKilled': {'deposit': 'u128', 'who': 'AccountId'},
'IdentitySet': {'who': 'AccountId'},
'JudgementGiven': {
'registrar_index': 'u32',
'target': 'AccountId',
},
'JudgementRequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'JudgementUnrequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'RegistrarAdded': {'registrar_index': 'u32'},
'SubIdentityAdded': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRemoved': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRevoked': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
},
'ImOnline': {
'AllGood': None,
'HeartbeatReceived': {'authority_id': '[u8; 32]'},
'SomeOffline': {'offline': [('AccountId', 'scale_info::52')]},
},
'Indices': {
'IndexAssigned': {'index': 'u32', 'who': 'AccountId'},
'IndexFreed': {'index': 'u32'},
'IndexFrozen': {'index': 'u32', 'who': 'AccountId'},
},
'Multisig': {
'MultisigApproval': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'timepoint': 'scale_info::234',
},
'MultisigCancelled': {
'call_hash': '[u8; 32]',
'cancelling': 'AccountId',
'multisig': 'AccountId',
'timepoint': 'scale_info::234',
},
'MultisigExecuted': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'result': 'scale_info::61',
'timepoint': 'scale_info::234',
},
'NewMultisig': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
},
},
'Nis': {
'BidDropped': {
'amount': 'u128',
'duration': 'u32',
'who': 'AccountId',
},
'BidPlaced': {
'amount': 'u128',
'duration': 'u32',
'who': 'AccountId',
},
'BidRetracted': {
'amount': 'u128',
'duration': 'u32',
'who': 'AccountId',
},
'Funded': {'deficit': 'u128'},
'Issued': {
'amount': 'u128',
'expiry': 'u32',
'index': 'u32',
'proportion': 'u64',
'who': 'AccountId',
},
'Thawed': {
'amount': 'u128',
'dropped': 'bool',
'index': 'u32',
'proportion': 'u64',
'who': 'AccountId',
},
'Transferred': {
'from': 'AccountId',
'index': 'u32',
'to': 'AccountId',
},
},
'NisCounterpartBalances': {
'BalanceSet': {
'free': 'u128',
'reserved': 'u128',
'who': 'AccountId',
},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::31',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'NominationPools': {
'Bonded': {
'bonded': 'u128',
'joined': 'bool',
'member': 'AccountId',
'pool_id': 'u32',
},
'Created': {'depositor': 'AccountId', 'pool_id': 'u32'},
'Destroyed': {'pool_id': 'u32'},
'MemberRemoved': {'member': 'AccountId', 'pool_id': 'u32'},
'PaidOut': {
'member': 'AccountId',
'payout': 'u128',
'pool_id': 'u32',
},
'PoolSlashed': {'balance': 'u128', 'pool_id': 'u32'},
'RolesUpdated': {
'nominator': (None, 'AccountId'),
'root': (None, 'AccountId'),
'state_toggler': (None, 'AccountId'),
},
'StateChanged': {
'new_state': 'scale_info::328',
'pool_id': 'u32',
},
'Unbonded': {
'balance': 'u128',
'era': 'u32',
'member': 'AccountId',
'points': 'u128',
'pool_id': 'u32',
},
'UnbondingPoolSlashed': {
'balance': 'u128',
'era': 'u32',
'pool_id': 'u32',
},
'Withdrawn': {
'balance': 'u128',
'member': 'AccountId',
'points': 'u128',
'pool_id': 'u32',
},
},
'Offences': {'Offence': {'kind': '[u8; 16]', 'timeslot': 'Bytes'}},
'ParaInclusion': {
'CandidateBacked': ('scale_info::474', 'Bytes', 'u32', 'u32'),
'CandidateIncluded': (
'scale_info::474',
'Bytes',
'u32',
'u32',
),
'CandidateTimedOut': ('scale_info::474', 'Bytes', 'u32'),
},
'Paras': {
'ActionQueued': ('u32', 'u32'),
'CodeUpgradeScheduled': 'u32',
'CurrentCodeUpdated': 'u32',
'CurrentHeadUpdated': 'u32',
'NewHeadNoted': 'u32',
'PvfCheckAccepted': ('[u8; 32]', 'u32'),
'PvfCheckRejected': ('[u8; 32]', 'u32'),
'PvfCheckStarted': ('[u8; 32]', 'u32'),
},
'ParasDisputes': {
'DisputeConcluded': ('[u8; 32]', 'scale_info::483'),
'DisputeInitiated': ('[u8; 32]', 'scale_info::482'),
'DisputeTimedOut': '[u8; 32]',
'Revert': 'u32',
},
'PhragmenElection': {
'CandidateSlashed': {
'amount': 'u128',
'candidate': 'AccountId',
},
'ElectionError': None,
'EmptyTerm': None,
'MemberKicked': {'member': 'AccountId'},
'NewTerm': {'new_members': [('AccountId', 'u128')]},
'Renounced': {'candidate': 'AccountId'},
'SeatHolderSlashed': {
'amount': 'u128',
'seat_holder': 'AccountId',
},
},
'Preimage': {
'Cleared': {'hash': '[u8; 32]'},
'Noted': {'hash': '[u8; 32]'},
'Requested': {'hash': '[u8; 32]'},
},
'Proxy': {
'Announced': {
'call_hash': '[u8; 32]',
'proxy': 'AccountId',
'real': 'AccountId',
},
'ProxyAdded': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::231',
},
'ProxyExecuted': {'result': 'scale_info::61'},
'ProxyRemoved': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::231',
},
'PureCreated': {
'disambiguation_index': 'u16',
'proxy_type': 'scale_info::231',
'pure': 'AccountId',
'who': 'AccountId',
},
},
'Recovery': {
'AccountRecovered': {
'lost_account': 'AccountId',
'rescuer_account': 'AccountId',
},
'RecoveryClosed': {
'lost_account': 'AccountId',
'rescuer_account': 'AccountId',
},
'RecoveryCreated': {'account': 'AccountId'},
'RecoveryInitiated': {
'lost_account': 'AccountId',
'rescuer_account': 'AccountId',
},
'RecoveryRemoved': {'lost_account': 'AccountId'},
'RecoveryVouched': {
'lost_account': 'AccountId',
'rescuer_account': 'AccountId',
'sender': 'AccountId',
},
},
'Referenda': {
'Approved': {'index': 'u32'},
'Cancelled': {'index': 'u32', 'tally': 'scale_info::439'},
'ConfirmAborted': {'index': 'u32'},
'ConfirmStarted': {'index': 'u32'},
'Confirmed': {'index': 'u32', 'tally': 'scale_info::439'},
'DecisionDepositPlaced': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'DecisionDepositRefunded': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'DecisionStarted': {
'index': 'u32',
'proposal': 'scale_info::72',
'tally': 'scale_info::439',
'track': 'u16',
},
'DepositSlashed': {'amount': 'u128', 'who': 'AccountId'},
'Killed': {'index': 'u32', 'tally': 'scale_info::439'},
'Rejected': {'index': 'u32', 'tally': 'scale_info::439'},
'SubmissionDepositRefunded': {
'amount': 'u128',
'index': 'u32',
'who': 'AccountId',
},
'Submitted': {
'index': 'u32',
'proposal': 'scale_info::72',
'track': 'u16',
},
'TimedOut': {'index': 'u32', 'tally': 'scale_info::439'},
},
'Registrar': {
'Deregistered': {'para_id': 'u32'},
'Registered': {'manager': 'AccountId', 'para_id': 'u32'},
'Reserved': {'para_id': 'u32', 'who': 'AccountId'},
},
'Scheduler': {
'CallUnavailable': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Canceled': {'index': 'u32', 'when': 'u32'},
'Dispatched': {
'id': (None, '[u8; 32]'),
'result': 'scale_info::61',
'task': ('u32', 'u32'),
},
'PeriodicFailed': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'PermanentlyOverweight': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Scheduled': {'index': 'u32', 'when': 'u32'},
},
'Session': {'NewSession': {'session_index': 'u32'}},
'Slots': {
'Leased': {
'extra_reserved': 'u128',
'leaser': 'AccountId',
'para_id': 'u32',
'period_begin': 'u32',
'period_count': 'u32',
'total_amount': 'u128',
},
'NewLeasePeriod': {'lease_period': 'u32'},
},
'Society': {
'AutoUnbid': {'candidate': 'AccountId'},
'Bid': {'candidate_id': 'AccountId', 'offer': 'u128'},
'CandidateSuspended': {'candidate': 'AccountId'},
'Challenged': {'member': 'AccountId'},
'DefenderVote': {'vote': 'bool', 'voter': 'AccountId'},
'Deposit': {'value': 'u128'},
'Founded': {'founder': 'AccountId'},
'Inducted': {'candidates': ['AccountId'], 'primary': 'AccountId'},
'MemberSuspended': {'member': 'AccountId'},
'NewMaxMembers': {'max': 'u32'},
'SuspendedMemberJudgement': {
'judged': 'bool',
'who': 'AccountId',
},
'Unbid': {'candidate': 'AccountId'},
'Unfounded': {'founder': 'AccountId'},
'Unvouch': {'candidate': 'AccountId'},
'Vote': {
'candidate': 'AccountId',
'vote': 'bool',
'voter': 'AccountId',
},
'Vouch': {
'candidate_id': 'AccountId',
'offer': 'u128',
'vouching': 'AccountId',
},
},
'Staking': {
'Bonded': {'amount': 'u128', 'stash': 'AccountId'},
'Chilled': {'stash': 'AccountId'},
'EraPaid': {
'era_index': 'u32',
'remainder': 'u128',
'validator_payout': 'u128',
},
'ForceEra': {'mode': 'scale_info::38'},
'Kicked': {'nominator': 'AccountId', 'stash': 'AccountId'},
'OldSlashingReportDiscarded': {'session_index': 'u32'},
'PayoutStarted': {
'era_index': 'u32',
'validator_stash': 'AccountId',
},
'Rewarded': {'amount': 'u128', 'stash': 'AccountId'},
'SlashReported': {
'fraction': 'u32',
'slash_era': 'u32',
'validator': 'AccountId',
},
'Slashed': {'amount': 'u128', 'staker': 'AccountId'},
'StakersElected': None,
'StakingElectionFailed': None,
'Unbonded': {'amount': 'u128', 'stash': 'AccountId'},
'ValidatorPrefsSet': {
'prefs': 'scale_info::35',
'stash': 'AccountId',
},
'Withdrawn': {'amount': 'u128', 'stash': 'AccountId'},
},
'TechnicalCommittee': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::61',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::61',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'TechnicalMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'Tips': {
'NewTip': {'tip_hash': '[u8; 32]'},
'TipClosed': {
'payout': 'u128',
'tip_hash': '[u8; 32]',
'who': 'AccountId',
},
'TipClosing': {'tip_hash': '[u8; 32]'},
'TipRetracted': {'tip_hash': '[u8; 32]'},
'TipSlashed': {
'deposit': 'u128',
'finder': 'AccountId',
'tip_hash': '[u8; 32]',
},
},
'TransactionPayment': {
'TransactionFeePaid': {
'actual_fee': 'u128',
'tip': 'u128',
'who': 'AccountId',
},
},
'Treasury': {
'Awarded': {
'account': 'AccountId',
'award': 'u128',
'proposal_index': 'u32',
},
'Burnt': {'burnt_funds': 'u128'},
'Deposit': {'value': 'u128'},
'Proposed': {'proposal_index': 'u32'},
'Rejected': {'proposal_index': 'u32', 'slashed': 'u128'},
'Rollover': {'rollover_balance': 'u128'},
'SpendApproved': {
'amount': 'u128',
'beneficiary': 'AccountId',
'proposal_index': 'u32',
},
'Spending': {'budget_remaining': 'u128'},
'UpdatedInactive': {
'deactivated': 'u128',
'reactivated': 'u128',
},
},
'Ump': {
'ExecutedUpward': ('[u8; 32]', 'scale_info::479'),
'InvalidFormat': '[u8; 32]',
'OverweightEnqueued': (
'u32',
'[u8; 32]',
'u64',
'scale_info::8',
),
'OverweightServiced': ('u64', 'scale_info::8'),
'UnsupportedVersion': '[u8; 32]',
'UpwardMessagesReceived': ('u32', 'u32', 'u32'),
'WeightExhausted': (
'[u8; 32]',
'scale_info::8',
'scale_info::8',
),
},
'Utility': {
'BatchCompleted': None,
'BatchCompletedWithErrors': None,
'BatchInterrupted': {
'error': 'scale_info::24',
'index': 'u32',
},
'DispatchedAs': {'result': 'scale_info::61'},
'ItemCompleted': None,
'ItemFailed': {'error': 'scale_info::24'},
},
'Vesting': {
'VestingCompleted': {'account': 'AccountId'},
'VestingUpdated': {'account': 'AccountId', 'unvested': 'u128'},
},
'VoterList': {
'Rebagged': {'from': 'u64', 'to': 'u64', 'who': 'AccountId'},
'ScoreUpdated': {'new_score': 'u64', 'who': 'AccountId'},
},
'Whitelist': {
'CallWhitelisted': {'call_hash': '[u8; 32]'},
'WhitelistedCallDispatched': {
'call_hash': '[u8; 32]',
'result': 'scale_info::445',
},
'WhitelistedCallRemoved': {'call_hash': '[u8; 32]'},
},
'XcmPallet': {
'AssetsClaimed': (
'[u8; 32]',
'scale_info::158',
'scale_info::424',
),
'AssetsTrapped': (
'[u8; 32]',
'scale_info::158',
'scale_info::424',
),
'Attempted': {
'Complete': 'u64',
'Error': 'scale_info::422',
'Incomplete': ('u64', 'scale_info::422'),
},
'InvalidResponder': (
'scale_info::158',
'u64',
(None, 'scale_info::158'),
),
'InvalidResponderVersion': ('scale_info::158', 'u64'),
'Notified': ('u64', 'u8', 'u8'),
'NotifyDecodeFailed': ('u64', 'u8', 'u8'),
'NotifyDispatchError': ('u64', 'u8', 'u8'),
'NotifyOverweight': (
'u64',
'u8',
'u8',
'scale_info::8',
'scale_info::8',
),
'NotifyTargetMigrationFail': ('scale_info::389', 'u64'),
'NotifyTargetSendFail': (
'scale_info::158',
'u64',
'scale_info::422',
),
'ResponseReady': ('u64', 'scale_info::419'),
'ResponseTaken': 'u64',
'Sent': (
'scale_info::158',
'scale_info::158',
['scale_info::418'],
),
'SupportedVersionChanged': ('scale_info::158', 'u32'),
'UnexpectedResponse': ('scale_info::158', 'u64'),
'VersionChangeNotified': ('scale_info::158', 'u32'),
},
},
'phase': {
'ApplyExtrinsic': 'u32',
'Finalization': None,
'Initialization': None,
},
'topics': ['[u8; 32]'],
},
]
ExecutionPhase¶
The execution phase of the block.
Python¶
result = substrate.query(
'System', 'ExecutionPhase', []
)
Return value¶
{'ApplyExtrinsic': 'u32', 'Finalization': None, 'Initialization': None}
ExtrinsicCount¶
Total extrinsics count for the current block.
Python¶
result = substrate.query(
'System', 'ExtrinsicCount', []
)
Return value¶
'u32'
ExtrinsicData¶
Extrinsics data for the current block (maps an extrinsic's index to its data).
Python¶
result = substrate.query(
'System', 'ExtrinsicData', ['u32']
)
Return value¶
'Bytes'
LastRuntimeUpgrade¶
Stores the spec_version and spec_name of when the last runtime upgrade happened.
Python¶
result = substrate.query(
'System', 'LastRuntimeUpgrade', []
)
Return value¶
{'spec_name': 'Str', 'spec_version': 'u32'}
Number¶
The current block number being processed. Set by execute_block.
Python¶
result = substrate.query(
'System', 'Number', []
)
Return value¶
'u32'
ParentHash¶
Hash of the previous block.
Python¶
result = substrate.query(
'System', 'ParentHash', []
)
Return value¶
'[u8; 32]'
UpgradedToTripleRefCount¶
True if we have upgraded so that AccountInfo contains three types of RefCount. False
(default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToTripleRefCount', []
)
Return value¶
'bool'
UpgradedToU32RefCount¶
True if we have upgraded so that type RefCount is u32. False (default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToU32RefCount', []
)
Return value¶
'bool'
Constants¶
BlockHashCount¶
Maximum number of block number to block hash mappings to keep (oldest pruned first).
Value¶
4096
Python¶
constant = substrate.get_constant('System', 'BlockHashCount')
BlockLength¶
The maximum length of a block (in bytes).
Value¶
{'max': {'mandatory': 5242880, 'normal': 3932160, 'operational': 5242880}}
Python¶
constant = substrate.get_constant('System', 'BlockLength')
BlockWeights¶
Block & extrinsics weights: base values and limits.
Value¶
{
'base_block': {'proof_size': 0, 'ref_time': 9022244000},
'max_block': {
'proof_size': 18446744073709551615,
'ref_time': 2000000000000,
},
'per_class': {
'mandatory': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 95108000},
'max_extrinsic': None,
'max_total': None,
'reserved': None,
},
'normal': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 95108000},
'max_extrinsic': {
'proof_size': 13650590614545068195,
'ref_time': 1479904892000,
},
'max_total': {
'proof_size': 13835058055282163711,
'ref_time': 1500000000000,
},
'reserved': {'proof_size': 0, 'ref_time': 0},
},
'operational': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 95108000},
'max_extrinsic': {
'proof_size': 18262276632972456099,
'ref_time': 1979904892000,
},
'max_total': {
'proof_size': 18446744073709551615,
'ref_time': 2000000000000,
},
'reserved': {
'proof_size': 4611686018427387904,
'ref_time': 500000000000,
},
},
},
}
Python¶
constant = substrate.get_constant('System', 'BlockWeights')
DbWeight¶
The weight of runtime database operations the runtime can invoke.
Value¶
{'read': 25000000, 'write': 100000000}
Python¶
constant = substrate.get_constant('System', 'DbWeight')
SS58Prefix¶
The designated SS58 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
Value¶
2
Python¶
constant = substrate.get_constant('System', 'SS58Prefix')
Version¶
Get the chain's current version.
Value¶
{
'apis': [
('0xdf6acb689907609b', 4),
('0x37e397fc7c91f5e4', 1),
('0x40fe3ad401f8959a', 6),
('0xd2bc9897eed08f15', 3),
('0xf78b278be53f454c', 2),
('0xaf2c0297a23e6d3d', 2),
('0x49eaaf1b548a0cb0', 1),
('0x91d5df18b0d2cf58', 1),
('0xed99c5acb25eedf5', 3),
('0xcbca25e39f142387', 2),
('0x687ad44ad37f03c2', 1),
('0xab3c0572291feb8b', 1),
('0xbc9d89904f5b923f', 1),
('0x37c8bb1350a9a2a8', 2),
('0xf3ff14d5ab527059', 2),
('0x17a6bc0d0062aeb3', 1),
],
'authoring_version': 2,
'impl_name': 'parity-kusama',
'impl_version': 0,
'spec_name': 'kusama',
'spec_version': 9370,
'state_version': 0,
'transaction_version': 19,
}
Python¶
constant = substrate.get_constant('System', 'Version')
Errors¶
CallFiltered¶
The origin filter prevent the call to be dispatched.
FailedToExtractRuntimeVersion¶
Failed to extract the runtime version from the new runtime.
Either calling Core_version or decoding RuntimeVersion failed.
InvalidSpecName¶
The name of specification does not match between the current runtime and the new runtime.
NonDefaultComposite¶
Suicide called when the account has non-default composite data.
NonZeroRefCount¶
There is a non-zero reference count preventing the account from being purged.
SpecVersionNeedsToIncrease¶
The specification version is not allowed to decrease between the current runtime and the new runtime.
TechnicalCommittee¶
Calls¶
close¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal¶
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute¶
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose¶
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members¶
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes¶
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote¶
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events¶
Approved¶
A motion was approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed¶
A proposal was closed because its threshold was reached or after its duration was up.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved¶
A motion was not approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed¶
A motion was executed; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted¶
A single member did some action; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed¶
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted¶
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions¶
Members¶
The current members of the collective. This is stored sorted (just by value).
Python¶
result = substrate.query(
'TechnicalCommittee', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The prime member that helps determine the default vote behavior in case of absentations.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Prime', []
)
Return value¶
'AccountId'
ProposalCount¶
Proposals so far.
Python¶
result = substrate.query(
'TechnicalCommittee', 'ProposalCount', []
)
Return value¶
'u32'
ProposalOf¶
Actual proposal for a given hash, if it's current.
Python¶
result = substrate.query(
'TechnicalCommittee', 'ProposalOf', ['[u8; 32]']
)
Return value¶
'Call'
Proposals¶
The hashes of the active proposals.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Proposals', []
)
Return value¶
['[u8; 32]']
Voting¶
Votes on a given proposal, if it is ongoing.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Voting', ['[u8; 32]']
)
Return value¶
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors¶
AlreadyInitialized¶
Members are already initialized!
DuplicateProposal¶
Duplicate proposals not allowed
DuplicateVote¶
Duplicate vote ignored
NotMember¶
Account is not a member
ProposalMissing¶
Proposal must exist
TooEarly¶
The close call was made too early, before the end of the voting.
TooManyProposals¶
There can only be a maximum of MaxProposals active proposals.
WrongIndex¶
Mismatched index
WrongProposalLength¶
The given length bound for the proposal was too low.
WrongProposalWeight¶
The given weight bound for the proposal was too low.
TechnicalMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'TechnicalMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'TechnicalMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
Timestamp¶
Calls¶
set¶
Set the current time.
This call should be invoked exactly once per block. It will panic at the finalization phase, if this call hasn't been invoked by that time.
The timestamp should be greater than the previous one by the amount specified by
MinimumPeriod.
The dispatch origin for this call must be Inherent.
# <weight>
- O(1) (Note that implementations of OnTimestampSet must also be O(1))
- 1 storage read and 1 storage mutation (codec O(1)). (because of DidUpdate::take in
on_finalize)
- 1 event handler on_timestamp_set. Must be O(1).
# </weight>
Attributes¶
| Name | Type |
|---|---|
| now | T::Moment |
Python¶
call = substrate.compose_call(
'Timestamp', 'set', {'now': 'u64'}
)
Storage functions¶
DidUpdate¶
Did the timestamp get updated in this block?
Python¶
result = substrate.query(
'Timestamp', 'DidUpdate', []
)
Return value¶
'bool'
Now¶
Current time for the current block.
Python¶
result = substrate.query(
'Timestamp', 'Now', []
)
Return value¶
'u64'
Constants¶
MinimumPeriod¶
The minimum period between blocks. Beware that this is different to the expected period that the block production apparatus provides. Your chosen consensus system will generally work with this to determine a sensible block time. e.g. For Aura, it will be double this period on default settings.
Value¶
3000
Python¶
constant = substrate.get_constant('Timestamp', 'MinimumPeriod')
Tips¶
Calls¶
close_tip¶
Close and payout a tip.
The dispatch origin for this call must be Signed.
The tip identified by hash must have finished its countdown period.
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the original tipreasonand the beneficiary account ID.
# <weight>
- Complexity: O(T) where T is the number of tippers. decoding Tipper vec of length
T. T is charged as upper bound given by ContainsLengthBound. The actual cost
depends on the implementation of T::Tippers.
- DbReads: Tips, Tippers, tip finder
- DbWrites: Reasons, Tips, Tippers, tip finder
# </weight>
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Tips', 'close_tip', {'hash': '[u8; 32]'}
)
report_awesome¶
Report something reason that deserves a tip and claim any eventual the finder's fee.
The dispatch origin for this call must be Signed.
Payment: TipReportDepositBase will be reserved from the origin account, as well as
DataDepositPerByte for each byte in reason.
reason: The reason for, or the thing that deserves, the tip; generally this will be a UTF-8-encoded URL.who: The account which should be credited for the tip.
Emits NewTip if successful.
# <weight>
- Complexity: O(R) where R length of reason.
- encoding and hashing of 'reason'
- DbReads: Reasons, Tips
- DbWrites: Reasons, Tips
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reason | Vec<u8> |
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Tips', 'report_awesome', {
'reason': 'Bytes',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
retract_tip¶
Retract a prior tip-report from report_awesome, and cancel the process of tipping.
If successful, the original deposit will be unreserved.
The dispatch origin for this call must be Signed and the tip identified by hash
must have been reported by the signing account through report_awesome (and not
through tip_new).
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the original tipreasonand the beneficiary account ID.
Emits TipRetracted if successful.
# <weight>
- Complexity: O(1)
- Depends on the length of T::Hash which is fixed.
- DbReads: Tips, origin account
- DbWrites: Reasons, Tips, origin account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Tips', 'retract_tip', {'hash': '[u8; 32]'}
)
slash_tip¶
Remove and slash an already-open tip.
May only be called from T::RejectOrigin.
As a result, the finder is slashed and the deposits are lost.
Emits TipSlashed if successful.
# <weight>
T is charged as upper bound given by ContainsLengthBound.
The actual cost depends on the implementation of T::Tippers.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Tips', 'slash_tip', {'hash': '[u8; 32]'}
)
tip¶
Declare a tip value for an already-open tip.
The dispatch origin for this call must be Signed and the signing account must be a
member of the Tippers set.
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the hash of the original tipreasonand the beneficiary account ID.tip_value: The amount of tip that the sender would like to give. The median tip value of active tippers will be given to thewho.
Emits TipClosing if the threshold of tippers has been reached and the countdown period
has started.
# <weight>
- Complexity: O(T) where T is the number of tippers. decoding Tipper vec of length
T, insert tip and check closing, T is charged as upper bound given by
ContainsLengthBound. The actual cost depends on the implementation of T::Tippers.
Actually weight could be lower as it depends on how many tips are in OpenTip but it
is weighted as if almost full i.e of length T-1.
- DbReads: Tippers, Tips
- DbWrites: Tips
# </weight>
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
| tip_value | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'Tips', 'tip', {
'hash': '[u8; 32]',
'tip_value': 'u128',
}
)
tip_new¶
Give a tip for something new; no finder's fee will be taken.
The dispatch origin for this call must be Signed and the signing account must be a
member of the Tippers set.
reason: The reason for, or the thing that deserves, the tip; generally this will be a UTF-8-encoded URL.who: The account which should be credited for the tip.tip_value: The amount of tip that the sender would like to give. The median tip value of active tippers will be given to thewho.
Emits NewTip if successful.
# <weight>
- Complexity: O(R + T) where R length of reason, T is the number of tippers.
- O(T): decoding Tipper vec of length T. T is charged as upper bound given by
ContainsLengthBound. The actual cost depends on the implementation of
T::Tippers.
- O(R): hashing and encoding of reason of length R
- DbReads: Tippers, Reasons
- DbWrites: Reasons, Tips
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reason | Vec<u8> |
| who | AccountIdLookupOf<T> |
| tip_value | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'Tips', 'tip_new', {
'reason': 'Bytes',
'tip_value': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
NewTip¶
A new tip suggestion has been opened.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipClosed¶
A tip suggestion has been closed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
| who | T::AccountId |
AccountId |
| payout | BalanceOf<T, I> |
u128 |
TipClosing¶
A tip suggestion has reached threshold and is closing.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipRetracted¶
A tip suggestion has been retracted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipSlashed¶
A tip suggestion has been slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
| finder | T::AccountId |
AccountId |
| deposit | BalanceOf<T, I> |
u128 |
Storage functions¶
Reasons¶
Simple preimage lookup from the reason's hash to the original data. Again, has an insecure enumerable hash since the key is guaranteed to be the result of a secure hash.
Python¶
result = substrate.query(
'Tips', 'Reasons', ['[u8; 32]']
)
Return value¶
'Bytes'
Tips¶
TipsMap that are not yet completed. Keyed by the hash of (reason, who) from the value.
This has the insecure enumerable hash function since the key itself is already
guaranteed to be a secure hash.
Python¶
result = substrate.query(
'Tips', 'Tips', ['[u8; 32]']
)
Return value¶
{
'closes': (None, 'u32'),
'deposit': 'u128',
'finder': 'AccountId',
'finders_fee': 'bool',
'reason': '[u8; 32]',
'tips': [('AccountId', 'u128')],
'who': 'AccountId',
}
Constants¶
DataDepositPerByte¶
The amount held on deposit per byte within the tip report reason or bounty description.
Value¶
333333333
Python¶
constant = substrate.get_constant('Tips', 'DataDepositPerByte')
MaximumReasonLength¶
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
Value¶
16384
Python¶
constant = substrate.get_constant('Tips', 'MaximumReasonLength')
TipCountdown¶
The period for which a tip remains open after is has achieved threshold tippers.
Value¶
14400
Python¶
constant = substrate.get_constant('Tips', 'TipCountdown')
TipFindersFee¶
The percent of the final tip which goes to the original reporter of the tip.
Value¶
20
Python¶
constant = substrate.get_constant('Tips', 'TipFindersFee')
TipReportDepositBase¶
The amount held on deposit for placing a tip report.
Value¶
33333333300
Python¶
constant = substrate.get_constant('Tips', 'TipReportDepositBase')
Errors¶
AlreadyKnown¶
The tip was already found/started.
NotFinder¶
The account attempting to retract the tip is not the finder of the tip.
Premature¶
The tip cannot be claimed/closed because it's still in the countdown period.
ReasonTooBig¶
The reason given is just too big.
StillOpen¶
The tip cannot be claimed/closed because there are not enough tippers yet.
UnknownTip¶
The tip hash is unknown.
TransactionPayment¶
Events¶
TransactionFeePaid¶
A transaction fee actual_fee, of which tip was added to the minimum inclusion fee,
has been paid by who.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| actual_fee | BalanceOf<T> |
u128 |
| tip | BalanceOf<T> |
u128 |
Storage functions¶
NextFeeMultiplier¶
Python¶
result = substrate.query(
'TransactionPayment', 'NextFeeMultiplier', []
)
Return value¶
'u128'
StorageVersion¶
Python¶
result = substrate.query(
'TransactionPayment', 'StorageVersion', []
)
Return value¶
('V1Ancient', 'V2')
Constants¶
OperationalFeeMultiplier¶
A fee mulitplier for Operational extrinsics to compute "virtual tip" to boost their
priority
This value is multipled by the final_fee to obtain a "virtual tip" that is later
added to a tip component in regular priority calculations.
It means that a Normal transaction can front-run a similarly-sized Operational
extrinsic (with no tip), by including a tip value greater than the virtual tip.
``rust,ignore
// ForNormal`
let priority = priority_calc(tip);
// For Operational
let virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier;
let priority = priority_calc(tip + virtual_tip);
```
Note that since we use final_fee the multiplier applies also to the regular tip
sent with the transaction. So, not only does the transaction get a priority bump based
on the inclusion_fee, but we also amplify the impact of tips applied to Operational
transactions.
Value¶
5
Python¶
constant = substrate.get_constant('TransactionPayment', 'OperationalFeeMultiplier')
Treasury¶
Calls¶
approve_proposal¶
Approve a proposal. At a later time, the proposal will be allocated to the beneficiary and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight>
- Complexity: O(1).
- DbReads: Proposals, Approvals
- DbWrite: Approvals
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'approve_proposal', {'proposal_id': 'u32'}
)
propose_spend¶
Put forward a suggestion for spending. A deposit proportional to the value is reserved and slashed if the proposal is rejected. It is returned once the proposal is awarded.
# <weight>
- Complexity: O(1)
- DbReads: ProposalCount, origin account
- DbWrites: ProposalCount, Proposals, origin account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Treasury', 'propose_spend', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
reject_proposal¶
Reject a proposed spend. The original deposit will be slashed.
May only be called from T::RejectOrigin.
# <weight>
- Complexity: O(1)
- DbReads: Proposals, rejected proposer account
- DbWrites: Proposals, rejected proposer account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'reject_proposal', {'proposal_id': 'u32'}
)
remove_approval¶
Force a previously approved proposal to be removed from the approval queue. The original deposit will no longer be returned.
May only be called from T::RejectOrigin.
- proposal_id: The index of a proposal
# <weight>
- Complexity: O(A) where A is the number of approvals
- Db reads and writes: Approvals
# </weight>
Errors:
- ProposalNotApproved: The proposal_id supplied was not found in the approval queue,
i.e., the proposal has not been approved. This could also mean the proposal does not
exist altogether, thus there is no way it would have been approved in the first place.
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'remove_approval', {'proposal_id': 'u32'}
)
spend¶
Propose and approve a spend of treasury funds.
origin: Must beSpendOriginwith theSuccessvalue being at leastamount.amount: The amount to be transferred from the treasury to thebeneficiary.beneficiary: The destination account for the transfer.
NOTE: For record-keeping purposes, the proposer is deemed to be equivalent to the beneficiary.
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Treasury', 'spend', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Awarded¶
Some funds have been allocated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| award | BalanceOf<T, I> |
u128 |
| account | T::AccountId |
AccountId |
Burnt¶
Some of our funds have been burnt.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| burnt_funds | BalanceOf<T, I> |
u128 |
Deposit¶
Some funds have been deposited.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| value | BalanceOf<T, I> |
u128 |
Proposed¶
New proposal.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
Rejected¶
A proposal was rejected; funds were slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| slashed | BalanceOf<T, I> |
u128 |
Rollover¶
Spending has finished; this is the amount that rolls over until next spend.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| rollover_balance | BalanceOf<T, I> |
u128 |
SpendApproved¶
A new spend proposal has been approved.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| amount | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
Spending¶
We have ended a spend period and will now allocate funds.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| budget_remaining | BalanceOf<T, I> |
u128 |
UpdatedInactive¶
The inactive funds of the pallet have been updated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| reactivated | BalanceOf<T, I> |
u128 |
| deactivated | BalanceOf<T, I> |
u128 |
Storage functions¶
Approvals¶
Proposal indices that have been approved but not yet awarded.
Python¶
result = substrate.query(
'Treasury', 'Approvals', []
)
Return value¶
['u32']
Deactivated¶
The amount which has been reported as inactive to Currency.
Python¶
result = substrate.query(
'Treasury', 'Deactivated', []
)
Return value¶
'u128'
ProposalCount¶
Number of proposals that have been made.
Python¶
result = substrate.query(
'Treasury', 'ProposalCount', []
)
Return value¶
'u32'
Proposals¶
Proposals that have been made.
Python¶
result = substrate.query(
'Treasury', 'Proposals', ['u32']
)
Return value¶
{
'beneficiary': 'AccountId',
'bond': 'u128',
'proposer': 'AccountId',
'value': 'u128',
}
Constants¶
Burn¶
Percentage of spare funds (if any) that are burnt per spend period.
Value¶
2000
Python¶
constant = substrate.get_constant('Treasury', 'Burn')
MaxApprovals¶
The maximum number of approvals that can wait in the spending queue.
NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
Value¶
100
Python¶
constant = substrate.get_constant('Treasury', 'MaxApprovals')
PalletId¶
The treasury's pallet id, used for deriving its sovereign account ID.
Value¶
'0x70792f7472737279'
Python¶
constant = substrate.get_constant('Treasury', 'PalletId')
ProposalBond¶
Fraction of a proposal's value that should be bonded in order to place the proposal. An accepted proposal gets these back. A rejected proposal does not.
Value¶
50000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBond')
ProposalBondMaximum¶
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value¶
33333333333000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBondMaximum')
ProposalBondMinimum¶
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value¶
666666666000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBondMinimum')
SpendPeriod¶
Period between successive spends.
Value¶
86400
Python¶
constant = substrate.get_constant('Treasury', 'SpendPeriod')
Errors¶
InsufficientPermission¶
The spend origin is valid but the amount it is allowed to spend is lower than the amount to be spent.
InsufficientProposersBalance¶
Proposer's balance is too low.
InvalidIndex¶
No proposal or bounty at that index.
ProposalNotApproved¶
Proposal has not been approved.
TooManyApprovals¶
Too many approvals in the queue.
Ump¶
Calls¶
service_overweight¶
Service a single overweight upward message.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight message to service.weight_limit: The amount of weight that message execution may take.
Errors:
- UnknownMessageIndex: Message of index is unknown.
- WeightOverLimit: Message execution may use greater than weight_limit.
Events:
- OverweightServiced: On success.
Attributes¶
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | Weight |
Python¶
call = substrate.compose_call(
'Ump', 'service_overweight', {
'index': 'u64',
'weight_limit': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
Events¶
ExecutedUpward¶
Upward message executed with the given outcome. [ id, outcome ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MessageId |
[u8; 32] |
| None | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidFormat¶
Upward message is invalid XCM. [ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MessageId |
[u8; 32] |
OverweightEnqueued¶
The weight budget was exceeded for an individual upward message.
This message can be later dispatched manually using service_overweight dispatchable
using the assigned overweight_index.
[ para, id, overweight_index, required ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | MessageId |
[u8; 32] |
| None | OverweightIndex |
u64 |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightServiced¶
Upward message from the overweight queue was executed with the given actual weight used.
[ overweight_index, used ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | OverweightIndex |
u64 |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
UnsupportedVersion¶
Upward message is unsupported version of XCM. [ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MessageId |
[u8; 32] |
UpwardMessagesReceived¶
Some upward messages have been received and will be processed. [ para, count, size ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | u32 |
u32 |
WeightExhausted¶
The weight limit for handling upward messages was reached. [ id, remaining, required ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MessageId |
[u8; 32] |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
Storage functions¶
NeedsDispatch¶
The ordered list of ParaIds that have a RelayDispatchQueue entry.
Invariant:
- The set of items from this vector should be exactly the set of the keys in
RelayDispatchQueues and RelayDispatchQueueSize.
Python¶
result = substrate.query(
'Ump', 'NeedsDispatch', []
)
Return value¶
['u32']
NextDispatchRoundStartWith¶
This is the para that gets will get dispatched first during the next upward dispatchable queue execution round.
Invariant:
- If Some(para), then para must be present in NeedsDispatch.
Python¶
result = substrate.query(
'Ump', 'NextDispatchRoundStartWith', []
)
Return value¶
'u32'
Overweight¶
The messages that exceeded max individual message weight budget.
These messages stay there until manually dispatched.
Python¶
result = substrate.query(
'Ump', 'Overweight', ['u64']
)
Return value¶
('u32', 'Bytes')
OverweightCount¶
The number of overweight messages ever recorded in Overweight (and thus the lowest free
index).
Python¶
result = substrate.query(
'Ump', 'OverweightCount', []
)
Return value¶
'u64'
RelayDispatchQueueSize¶
Size of the dispatch queues. Caches sizes of the queues in RelayDispatchQueue.
First item in the tuple is the count of messages and second is the total length (in bytes) of the message payloads.
Note that this is an auxiliary mapping: it's possible to tell the byte size and the number of
messages only looking at RelayDispatchQueues. This mapping is separate to avoid the cost of
loading the whole message queue if only the total size and count are required.
Invariant:
- The set of keys should exactly match the set of keys of RelayDispatchQueues.
Python¶
result = substrate.query(
'Ump', 'RelayDispatchQueueSize', ['u32']
)
Return value¶
('u32', 'u32')
RelayDispatchQueues¶
The messages waiting to be handled by the relay-chain originating from a certain parachain.
Note that some upward messages might have been already processed by the inclusion logic. E.g. channel management messages.
The messages are processed in FIFO order.
Python¶
result = substrate.query(
'Ump', 'RelayDispatchQueues', ['u32']
)
Return value¶
['Bytes']
Errors¶
UnknownMessageIndex¶
The message index given is unknown.
WeightOverLimit¶
The amount of weight given is possibly not enough for executing the message.
Utility¶
Calls¶
as_derivative¶
Send a call through an indexed pseudonym of the sender.
Filter from origin are passed along. The call will be dispatched with an origin which use the same filter as the origin of this call.
NOTE: If you need to ensure that any account-based filtering is not honored (i.e.
because you expect proxy to have been used prior in the call stack and you do not want
the call restrictions to apply to any sub-accounts), then use as_multi_threshold_1
in the Multisig pallet instead.
NOTE: Prior to version *12, this was called as_limited_sub.
The dispatch origin for this call must be Signed.
Attributes¶
| Name | Type |
|---|---|
| index | u16 |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'as_derivative', {'call': 'Call', 'index': 'u16'}
)
batch¶
Send a batch of dispatch calls.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatched without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
This will return Ok in all circumstances. To determine the success of the batch, an
event is deposited. If a call failed and the batch was interrupted, then the
BatchInterrupted event is deposited, along with the number of successful calls made
and the error of the failed call. If all were successful, then the BatchCompleted
event is deposited.
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'batch', {'calls': ['Call']}
)
batch_all¶
Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatched without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'batch_all', {'calls': ['Call']}
)
dispatch_as¶
Dispatches a function call with a provided origin.
The dispatch origin for this call must be Root.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + T::WeightInfo::dispatch_as().
# </weight>
Attributes¶
| Name | Type |
|---|---|
| as_origin | Box<T::PalletsOrigin> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'dispatch_as', {
'as_origin': {
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Origins': (
'StakingAdmin',
'Treasurer',
'FellowshipAdmin',
'GeneralAdmin',
'AuctionAdmin',
'LeaseAdmin',
'ReferendumCanceller',
'ReferendumKiller',
'SmallTipper',
'BigTipper',
'SmallSpender',
'MediumSpender',
'BigSpender',
'WhitelistedCaller',
'FellowshipInitiates',
'Fellows',
'FellowshipExperts',
'FellowshipMasters',
'Fellowship1Dan',
'Fellowship2Dan',
'Fellowship3Dan',
'Fellowship4Dan',
'Fellowship5Dan',
'Fellowship6Dan',
'Fellowship7Dan',
'Fellowship8Dan',
'Fellowship9Dan',
),
'ParachainsOrigin': {
'Parachain': 'u32',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'XcmPallet': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
None: None,
},
'call': 'Call',
}
)
force_batch¶
Send a batch of dispatch calls.
Unlike batch, it allows errors and won't interrupt.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatch without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'force_batch', {'calls': ['Call']}
)
with_weight¶
Dispatch a function call with a specified weight.
This function does not check the weight of the call, and instead allows the Root origin to specify the weight of the call.
The dispatch origin for this call must be Root.
Attributes¶
| Name | Type |
|---|---|
| call | Box<<T as Config>::RuntimeCall> |
| weight | Weight |
Python¶
call = substrate.compose_call(
'Utility', 'with_weight', {
'call': 'Call',
'weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
Events¶
BatchCompleted¶
Batch of dispatches completed fully with no error.
Attributes¶
No attributes
BatchCompletedWithErrors¶
Batch of dispatches completed but has errors.
Attributes¶
No attributes
BatchInterrupted¶
Batch of dispatches did not complete fully. Index of first failing dispatch given, as well as the error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | u32 |
u32 |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
DispatchedAs¶
A call was dispatched.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
ItemCompleted¶
A single item within a Batch of dispatches has completed with no error.
Attributes¶
No attributes
ItemFailed¶
A single item within a Batch of dispatches has completed with error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
Constants¶
batched_calls_limit¶
The limit on the number of batched calls.
Value¶
10922
Python¶
constant = substrate.get_constant('Utility', 'batched_calls_limit')
Errors¶
TooManyCalls¶
Too many calls batched.
Vesting¶
Calls¶
force_vested_transfer¶
Force a vested transfer.
The dispatch origin for this call must be Root.
source: The account whose funds should be transferred.target: The account that should be transferred the vested funds.schedule: The vesting schedule attached to the transfer.
Emits VestingCreated.
NOTE: This will unlock all schedules through the current block.
# <weight>
- O(1).
- DbWeight: 4 Reads, 4 Writes
- Reads: Vesting Storage, Balances Locks, Target Account, Source Account
- Writes: Vesting Storage, Balances Locks, Target Account, Source Account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| source | AccountIdLookupOf<T> |
| target | AccountIdLookupOf<T> |
| schedule | VestingInfo<BalanceOf<T>, T::BlockNumber> |
Python¶
call = substrate.compose_call(
'Vesting', 'force_vested_transfer', {
'schedule': {
'locked': 'u128',
'per_block': 'u128',
'starting_block': 'u32',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
merge_schedules¶
Merge two vesting schedules together, creating a new vesting schedule that unlocks over the highest possible start and end blocks. If both schedules have already started the current block will be used as the schedule start; with the caveat that if one schedule is finished by the current block, the other will be treated as the new merged schedule, unmodified.
NOTE: If schedule1_index == schedule2_index this is a no-op.
NOTE: This will unlock all schedules through the current block prior to merging.
NOTE: If both schedules have ended by the current block, no new schedule will be created
and both will be removed.
Merged schedule attributes:
- starting_block: MAX(schedule1.starting_block, scheduled2.starting_block,
current_block).
- ending_block: MAX(schedule1.ending_block, schedule2.ending_block).
- locked: schedule1.locked_at(current_block) + schedule2.locked_at(current_block).
The dispatch origin for this call must be Signed.
schedule1_index: index of the first schedule to merge.schedule2_index: index of the second schedule to merge.
Attributes¶
| Name | Type |
|---|---|
| schedule1_index | u32 |
| schedule2_index | u32 |
Python¶
call = substrate.compose_call(
'Vesting', 'merge_schedules', {
'schedule1_index': 'u32',
'schedule2_index': 'u32',
}
)
vest¶
Unlock any vested funds of the sender account.
The dispatch origin for this call must be Signed and the sender must have funds still locked under this pallet.
Emits either VestingCompleted or VestingUpdated.
# <weight>
- O(1).
- DbWeight: 2 Reads, 2 Writes
- Reads: Vesting Storage, Balances Locks, [Sender Account]
- Writes: Vesting Storage, Balances Locks, [Sender Account]
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Vesting', 'vest', {}
)
vest_other¶
Unlock any vested funds of a target account.
The dispatch origin for this call must be Signed.
target: The account whose vested funds should be unlocked. Must have funds still locked under this pallet.
Emits either VestingCompleted or VestingUpdated.
# <weight>
- O(1).
- DbWeight: 3 Reads, 3 Writes
- Reads: Vesting Storage, Balances Locks, Target Account
- Writes: Vesting Storage, Balances Locks, Target Account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Vesting', 'vest_other', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vested_transfer¶
Create a vested transfer.
The dispatch origin for this call must be Signed.
target: The account receiving the vested funds.schedule: The vesting schedule attached to the transfer.
Emits VestingCreated.
NOTE: This will unlock all schedules through the current block.
# <weight>
- O(1).
- DbWeight: 3 Reads, 3 Writes
- Reads: Vesting Storage, Balances Locks, Target Account, [Sender Account]
- Writes: Vesting Storage, Balances Locks, Target Account, [Sender Account]
# </weight>
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
| schedule | VestingInfo<BalanceOf<T>, T::BlockNumber> |
Python¶
call = substrate.compose_call(
'Vesting', 'vested_transfer', {
'schedule': {
'locked': 'u128',
'per_block': 'u128',
'starting_block': 'u32',
},
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
VestingCompleted¶
An [account] has become fully vested.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
VestingUpdated¶
The amount vested has been updated. This could indicate a change in funds available. The balance given is the amount which is left unvested (and thus locked).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| unvested | BalanceOf<T> |
u128 |
Storage functions¶
StorageVersion¶
Storage version of the pallet.
New networks start with latest version, as determined by the genesis build.
Python¶
result = substrate.query(
'Vesting', 'StorageVersion', []
)
Return value¶
('V0', 'V1')
Vesting¶
Information regarding the vesting of a given account.
Python¶
result = substrate.query(
'Vesting', 'Vesting', ['AccountId']
)
Return value¶
[{'locked': 'u128', 'per_block': 'u128', 'starting_block': 'u32'}]
Constants¶
MaxVestingSchedules¶
Value¶
28
Python¶
constant = substrate.get_constant('Vesting', 'MaxVestingSchedules')
MinVestedTransfer¶
The minimum amount transferred to call vested_transfer.
Value¶
33333333300
Python¶
constant = substrate.get_constant('Vesting', 'MinVestedTransfer')
Errors¶
AmountLow¶
Amount being transferred is too low to create a vesting schedule.
AtMaxVestingSchedules¶
The account already has MaxVestingSchedules count of schedules and thus
cannot add another one. Consider merging existing schedules in order to add another.
InvalidScheduleParams¶
Failed to create a new schedule because some parameter was invalid.
NotVesting¶
The account given is not vesting.
ScheduleIndexOutOfBounds¶
An index was out of bounds of the vesting schedules.
VoterList¶
Calls¶
put_in_front_of¶
Move the caller's Id directly in front of lighter.
The dispatch origin for this call must be Signed and can only be called by the Id of
the account going in front of lighter.
Only works if
- both nodes are within the same bag,
- and origin has a greater Score than lighter.
Attributes¶
| Name | Type |
|---|---|
| lighter | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'VoterList', 'put_in_front_of', {
'lighter': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
rebag¶
Declare that some dislocated account has, through rewards or penalties, sufficiently
changed its score that it should properly fall into a different bag than its current
one.
Anyone can call this function about any potentially dislocated account.
Will always update the stored score of dislocated to the correct score, based on
ScoreProvider.
If dislocated does not exists, it returns an error.
Attributes¶
| Name | Type |
|---|---|
| dislocated | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'VoterList', 'rebag', {
'dislocated': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Rebagged¶
Moved an account from one bag to another.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| from | T::Score |
u64 |
| to | T::Score |
u64 |
ScoreUpdated¶
Updated the score of some account to the given amount.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| new_score | T::Score |
u64 |
Storage functions¶
CounterForListNodes¶
Counter for the related counted storage map
Python¶
result = substrate.query(
'VoterList', 'CounterForListNodes', []
)
Return value¶
'u32'
ListBags¶
A bag stored in storage.
Stores a Bag struct, which stores head and tail pointers to itself.
Python¶
result = substrate.query(
'VoterList', 'ListBags', ['u64']
)
Return value¶
{'head': (None, 'AccountId'), 'tail': (None, 'AccountId')}
ListNodes¶
A single node, within some bag.
Nodes store links forward and back within their respective bags.
Python¶
result = substrate.query(
'VoterList', 'ListNodes', ['AccountId']
)
Return value¶
{
'bag_upper': 'u64',
'id': 'AccountId',
'next': (None, 'AccountId'),
'prev': (None, 'AccountId'),
'score': 'u64',
}
Constants¶
BagThresholds¶
The list of thresholds separating the various bags.
Ids are separated into unsorted bags according to their score. This specifies the thresholds separating the bags. An id's bag is the largest bag for which the id's score is less than or equal to its upper threshold.
When ids are iterated, higher bags are iterated completely before lower bags. This means that iteration is semi-sorted: ids of higher score tend to come before ids of lower score, but peer ids within a particular bag are sorted in insertion order.
# Expressing the constant
This constant must be sorted in strictly increasing order. Duplicate items are not permitted.
There is an implied upper limit of Score::MAX; that value does not need to be
specified within the bag. For any two threshold lists, if one ends with
Score::MAX, the other one does not, and they are otherwise equal, the two
lists will behave identically.
# Calculation
It is recommended to generate the set of thresholds in a geometric series, such that
there exists some constant ratio such that threshold[k + 1] == (threshold[k] *
constant_ratio).max(threshold[k] + 1) for all k.
The helpers in the /utils/frame/generate-bags module can simplify this calculation.
# Examples
- If
BagThresholds::get().is_empty(), then all ids are put into the same bag, and iteration is strictly in insertion order. - If
BagThresholds::get().len() == 64, and the thresholds are determined according to the procedure given above, then the constant ratio is equal to 2. - If
BagThresholds::get().len() == 200, and the thresholds are determined according to the procedure given above, then the constant ratio is approximately equal to 1.248. - If the threshold list begins
[1, 2, 3, ...], then an id with score 0 or 1 will fall into bag 0, an id with score 2 will fall into bag 1, etc.
# Migration
In the event that this list ever changes, a copy of the old bags list must be retained.
With that List::migrate can be called, which will perform the appropriate migration.
Value¶
[
33333333,
38184666,
43742062,
50108281,
57401040,
65755187,
75325197,
86288026,
98846385,
113232487,
129712342,
148590675,
170216561,
194989878,
223368704,
255877784,
293118235,
335778661,
384647885,
440629536,
504758756,
578221342,
662375673,
758777824,
869210344,
995715212,
1140631598,
1306639114,
1496807363,
1714652697,
1964203240,
2250073368,
2577549032,
2952685502,
3382419332,
3874696621,
4438619944,
5084616664,
5824631742,
6672348610,
7643442186,
8755868715,
10030197794,
11489992720,
13162246190,
15077879420,
17272313899,
19786126359,
22665799069,
25964579327,
29743464044,
34072327620,
39031213974,
44711816618,
51219174136,
58673612428,
67212969623,
76995144813,
88201017720,
101037793302,
115742833124,
132588044352,
151884907519,
173990236034,
199312773927,
228320753830,
261550554952,
299616621127,
343222822341,
393175469814,
450398225296,
515949180262,
591040420815,
677060440060,
775599812382,
888480604352,
1017790066098,
1165919226119,
1335607103187,
1529991352850,
1752666285025,
2007749325472,
2299957150072,
2634692899685,
3018146088258,
3457407051560,
3960598052785,
4537023469264,
5197341837346,
5953762936697,
6820273558240,
7812896130365,
8949984985591,
10252565745880,
11744724102088,
13454051176370,
15412153702632,
17655238458639,
20224781756373,
23168296370008,
26540210082583,
30402872096348,
34827705916070,
39896530022963,
45703070759499,
52354695399464,
59974397449015,
68703070888447,
78702115407088,
90156420804069,
103277785738759,
118308834046123,
135527501032588,
155252172707386,
177847572977594,
203731507665501,
233382590050230,
267349090784630,
306259075829029,
350832019859793,
401892109893305,
460383485119292,
527387694739404,
604143696619511,
692070766545736,
792794741693469,
908178083570703,
1040354316321961,
1191767477182765,
1365217308553008,
1563911027324411,
1791522628715580,
2052260821186860,
2350946848602280,
2693103638628474,
3085057925791037,
3534057237519885,
4048403906342940,
4637608586213668,
5312566111603995,
6085756951128531,
6971477980728040,
7986106843580624,
9148404784952770,
10479863561632778,
12005102840561012,
13752325434854380,
15753838794879048,
18046652397130688,
20673162077088732,
23681933959870064,
27128602484145260,
31076899124450156,
35599830833736348,
40781029996443328,
46716300853732512,
53515390995440424,
61304020674959928,
70226207470596936,
80446929278126800,
92155174875271168,
105567438465310176,
120931722816550704,
138532125018688464,
158694089650123072,
181790426491212160,
208248204055475872,
238556646405290848,
273276179270092192,
313048792736563520,
358609912124694080,
410801996551064960,
470590116626953088,
539079799334522496,
617537470046187776,
707413869675350912,
810370879959114368,
928312252892475904,
1063418812524189696,
1218188780021782528,
1395483967646286592,
1598582695797773824,
1831240411607374592,
2097759129958809600,
2403066980955773440,
2752809334727236096,
3153453188536351744,
3612406746388564480,
4138156402255148032,
4740423659834265600,
5430344890413097984,
6220677252688132096,
7126034582154840064,
8163157611837691904,
9351223520943572992,
10712200535224332288,
12271254135873939456,
14057212388066050048,
16103098993404108800,
18446744073709551615,
]
Python¶
constant = substrate.get_constant('VoterList', 'BagThresholds')
Errors¶
List¶
A error in the list interface implementation.
Whitelist¶
Calls¶
dispatch_whitelisted_call¶
Attributes¶
| Name | Type |
|---|---|
| call_hash | PreimageHash |
| call_encoded_len | u32 |
| call_weight_witness | Weight |
Python¶
call = substrate.compose_call(
'Whitelist', 'dispatch_whitelisted_call', {
'call_encoded_len': 'u32',
'call_hash': '[u8; 32]',
'call_weight_witness': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
dispatch_whitelisted_call_with_preimage¶
Attributes¶
| Name | Type |
|---|---|
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Whitelist', 'dispatch_whitelisted_call_with_preimage', {'call': 'Call'}
)
remove_whitelisted_call¶
Attributes¶
| Name | Type |
|---|---|
| call_hash | PreimageHash |
Python¶
call = substrate.compose_call(
'Whitelist', 'remove_whitelisted_call', {'call_hash': '[u8; 32]'}
)
whitelist_call¶
Attributes¶
| Name | Type |
|---|---|
| call_hash | PreimageHash |
Python¶
call = substrate.compose_call(
'Whitelist', 'whitelist_call', {'call_hash': '[u8; 32]'}
)
Events¶
CallWhitelisted¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| call_hash | PreimageHash |
[u8; 32] |
WhitelistedCallDispatched¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| call_hash | PreimageHash |
[u8; 32] |
| result | DispatchResultWithPostInfo |
{'Ok': {'actual_weight': (None, {'ref_time': 'u64', 'proof_size': 'u64'}), 'pays_fee': ('Yes', 'No')}, 'Err': {'post_info': {'actual_weight': (None, {'ref_time': 'u64', 'proof_size': 'u64'}), 'pays_fee': ('Yes', 'No')}, 'error': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}}} |
WhitelistedCallRemoved¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| call_hash | PreimageHash |
[u8; 32] |
Storage functions¶
WhitelistedCall¶
Python¶
result = substrate.query(
'Whitelist', 'WhitelistedCall', ['[u8; 32]']
)
Return value¶
()
Errors¶
CallAlreadyWhitelisted¶
The call was already whitelisted; No-Op.
CallIsNotWhitelisted¶
The call was not whitelisted.
InvalidCallWeightWitness¶
The weight of the decoded call was higher than the witness.
UnavailablePreImage¶
The preimage of the call hash could not be loaded.
UndecodableCall¶
The call could not be decoded.
XcmPallet¶
Calls¶
execute¶
Execute an XCM message from a local, signed, origin.
An event is deposited indicating whether msg could be executed completely or only
partially.
No more than max_weight will be used in its attempted execution. If this is less than the
maximum amount of weight that the message could take to be executed, then no execution
attempt will be made.
NOTE: A successful return to this does not imply that the msg was executed successfully
to completion; only that some of it was executed.
Attributes¶
| Name | Type |
|---|---|
| message | Box<VersionedXcm<<T as SysConfig>::RuntimeCall>> |
| max_weight | XcmWeight |
Python¶
call = substrate.compose_call(
'XcmPallet', 'execute', {
'max_weight': 'u64',
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::395',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::428',
],
},
'TeleportAsset': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::428',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::395',
],
'dest': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'effects': [
'scale_info::398',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::428',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::426',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::426',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::393',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::426',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::431',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::433',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::160',
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::433',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::406',
],
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::406',
],
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'effects': [
'scale_info::410',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::433',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::431',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::403',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::431',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::406',
],
'ticket': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::418',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'receive': [
'scale_info::406',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'reserve': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::422',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::406',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::406',
],
'SetAppendix': [
'scale_info::437',
],
'SetErrorHandler': [
'scale_info::437',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::406',
],
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::406',
],
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::406',
],
},
],
},
}
)
force_default_xcm_version¶
Set a safe XCM version (the version that XCM should be encoded with if the most recent version a destination can accept is unknown).
origin: Must be Root.maybe_xcm_version: The default XCM encoding version, orNoneto disable.
Attributes¶
| Name | Type |
|---|---|
| maybe_xcm_version | Option<XcmVersion> |
Python¶
call = substrate.compose_call(
'XcmPallet', 'force_default_xcm_version', {'maybe_xcm_version': (None, 'u32')}
)
force_subscribe_version_notify¶
Ask a location to notify us regarding their XCM version and any changes to it.
origin: Must be Root.location: The location to which we should subscribe for XCM version notifications.
Attributes¶
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python¶
call = substrate.compose_call(
'XcmPallet', 'force_subscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_unsubscribe_version_notify¶
Require that a particular destination should no longer notify us regarding any XCM version changes.
origin: Must be Root.location: The location to which we are currently subscribed for XCM version notifications which we no longer desire.
Attributes¶
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python¶
call = substrate.compose_call(
'XcmPallet', 'force_unsubscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_xcm_version¶
Extoll that a particular destination can be communicated with through a particular version of XCM.
origin: Must be Root.location: The destination that is being described.xcm_version: The latest version of XCM thatlocationsupports.
Attributes¶
| Name | Type |
|---|---|
| location | Box<MultiLocation> |
| xcm_version | XcmVersion |
Python¶
call = substrate.compose_call(
'XcmPallet', 'force_xcm_version', {
'location': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'parents': 'u8',
},
'xcm_version': 'u32',
}
)
limited_reserve_transfer_assets¶
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XcmPallet', 'limited_reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
limited_teleport_assets¶
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XcmPallet', 'limited_teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
reserve_transfer_assets¶
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python¶
call = substrate.compose_call(
'XcmPallet', 'reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
send¶
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python¶
call = substrate.compose_call(
'XcmPallet', 'send', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::395',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
},
'TeleportAsset': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::395',
],
'dest': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': {
'Null': None,
'X1': 'scale_info::391',
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'effects': [
'scale_info::398',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::393',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::393',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::393',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::396',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::390',
},
'AllConcreteNonFungible': {
'class': 'scale_info::390',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::390',
},
'ConcreteNonFungible': {
'class': 'scale_info::390',
'instance': 'scale_info::396',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::395',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::393',
],
},
'DepositAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
},
'DepositReserveAsset': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'ExchangeAsset': {
'give': [
'scale_info::395',
],
'receive': [
'scale_info::395',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::395',
],
'effects': [
'scale_info::398',
],
'reserve': 'scale_info::390',
},
'InitiateTeleport': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'effects': [
'scale_info::398',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::395',
],
'dest': 'scale_info::390',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::403',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::410',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::160',
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::410',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::406',
],
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::406',
],
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'effects': [
'scale_info::410',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::406',
],
'effects': [
'scale_info::410',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::403',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::403',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::406',
'halt_on_error': 'bool',
'instructions': [
'scale_info::403',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::411',
'beneficiary': 'scale_info::158',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::411',
'receive': [
'scale_info::406',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::411',
'effects': [
'scale_info::410',
],
'reserve': 'scale_info::158',
},
'InitiateTeleport': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'effects': [
'scale_info::410',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::411',
'dest': 'scale_info::158',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::408',
'id': 'scale_info::407',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::406',
],
'ticket': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::418',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::160',
'scale_info::160',
),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'receive': [
'scale_info::406',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'reserve': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::406',
],
'Wild': 'scale_info::412',
},
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::406',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::422',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::406',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::406',
],
'SetAppendix': [
'scale_info::418',
],
'SetErrorHandler': [
'scale_info::418',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::406',
],
'beneficiary': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::406',
],
'dest': {
'interior': 'scale_info::159',
'parents': 'u8',
},
'xcm': [
'scale_info::418',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::406',
],
},
],
},
}
)
teleport_assets¶
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python¶
call = substrate.compose_call(
'XcmPallet', 'teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::391',
'scale_info::391',
),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::159',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
Events¶
AssetsClaimed¶
Some assets have been claimed from an asset trap
[ hash, origin, assets ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::158', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::396'}}]} |
AssetsTrapped¶
Some assets have been placed in an asset trap.
[ hash, origin, assets ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::391', 'X2': ('scale_info::391', 'scale_info::391'), 'X3': ('scale_info::391', 'scale_info::391', 'scale_info::391'), 'X4': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X5': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X6': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X7': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391'), 'X8': ('scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391', 'scale_info::391')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::158', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::396'}}]} |
Attempted¶
Execution of an XCM message was attempted.
[ outcome ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | xcm::latest::Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidResponder¶
Expected query response has been received but the origin location of the response does not match that expected. The query remains registered for a later, valid, response to be received and acted upon.
[ origin location, id, expected location ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | QueryId |
u64 |
| None | Option<MultiLocation> |
(None, {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}) |
InvalidResponderVersion¶
Expected query response has been received but the expected origin location placed in storage by this runtime previously cannot be decoded. The query remains registered.
This is unexpected (since a location placed in storage in a previously executing runtime should be readable prior to query timeout) and dangerous since the possibly valid response will be dropped. Manual governance intervention is probably going to be needed.
[ origin location, id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | QueryId |
u64 |
Notified¶
Query response has been received and query is removed. The registered notification has been dispatched and executed successfully.
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDecodeFailed¶
Query response has been received and query is removed. The dispatch was unable to be
decoded into a Call; this might be due to dispatch function having a signature which
is not (origin, QueryId, Response).
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDispatchError¶
Query response has been received and query is removed. There was a general error with dispatching the notification call.
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyOverweight¶
Query response has been received and query is removed. The registered notification could not be dispatched because the dispatch weight is greater than the maximum weight originally budgeted by this runtime for the query result.
[ id, pallet index, call index, actual weight, max budgeted weight ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
NotifyTargetMigrationFail¶
A given location which had a version change subscription was dropped owing to an error migrating the location to our new XCM format.
[ location, query ID ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | VersionedMultiLocation |
{'V0': {'Null': None, 'X1': {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}, 'V1': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
| None | QueryId |
u64 |
NotifyTargetSendFail¶
A given location which had a version change subscription was dropped owing to an error sending the notification to it.
[ location, query ID, error ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | QueryId |
u64 |
| None | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
ResponseReady¶
Query response has been received and is ready for taking with take_response. There is
no registered notification call.
[ id, response ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | Response |
{'Null': None, 'Assets': [{'id': {'Concrete': 'scale_info::158', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::396'}}], 'ExecutionResult': (None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})), 'Version': 'u32'} |
ResponseTaken¶
Received query response has been read and removed.
[ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
Sent¶
A XCM message was sent.
[ origin, destination, message ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | Xcm<()> |
[{'WithdrawAsset': ['scale_info::406'], 'ReserveAssetDeposited': ['scale_info::406'], 'ReceiveTeleportedAsset': ['scale_info::406'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::406'], 'ExecutionResult': (None, ('u32', 'scale_info::422')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::406'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::159'}}, 'TransferReserveAsset': {'assets': ['scale_info::406'], 'dest': {'parents': 'u8', 'interior': 'scale_info::159'}, 'xcm': ['scale_info::418']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::160', 'scale_info::160'), 'X3': ('scale_info::160', 'scale_info::160', 'scale_info::160'), 'X4': ('scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160'), 'X5': ('scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160'), 'X6': ('scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160'), 'X7': ('scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160'), 'X8': ('scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160', 'scale_info::160')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::159'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::159'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::159'}, 'xcm': ['scale_info::418']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'receive': ['scale_info::406']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::159'}, 'xcm': ['scale_info::418']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::159'}, 'xcm': ['scale_info::418']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::159'}, 'assets': {'Definite': ['scale_info::406'], 'Wild': 'scale_info::412'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::407', 'fun': 'scale_info::408'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::418'], 'SetAppendix': ['scale_info::418'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::406'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::159'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
SupportedVersionChanged¶
The supported version of a location has been changed. This might be through an automatic notification or a manual intervention.
[ location, XCM version ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | XcmVersion |
u32 |
UnexpectedResponse¶
Query response received which does not match a registered query. This may be because a matching query was never registered, it may be because it is a duplicate response, or because the query timed out.
[ origin location, id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | QueryId |
u64 |
VersionChangeNotified¶
An XCM version change notification message has been attempted to be sent.
[ destination, result ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None, 'Defense': None, 'Administration': None, 'Treasury': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::161', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::161', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::161', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::163', 'part': 'scale_info::164'}})}} |
| None | XcmVersion |
u32 |
Storage functions¶
AssetTraps¶
The existing asset traps.
Key is the blake2 256 hash of (origin, versioned MultiAssets) pair. Value is the number of
times this pair has been trapped (usually just 1 if it exists at all).
Python¶
result = substrate.query(
'XcmPallet', 'AssetTraps', ['[u8; 32]']
)
Return value¶
'u32'
CurrentMigration¶
The current migration's stage, if any.
Python¶
result = substrate.query(
'XcmPallet', 'CurrentMigration', []
)
Return value¶
{
'MigrateAndNotifyOldTargets': None,
'MigrateSupportedVersion': None,
'MigrateVersionNotifiers': None,
'NotifyCurrentTargets': (None, 'Bytes'),
}
Queries¶
The ongoing queries.
Python¶
result = substrate.query(
'XcmPallet', 'Queries', ['u64']
)
Return value¶
{
'Pending': {
'maybe_notify': (None, ('u8', 'u8')),
'responder': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::391', 'scale_info::391'),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::160',
'X2': ('scale_info::160', 'scale_info::160'),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
},
'timeout': 'u32',
},
'Ready': {
'at': 'u32',
'response': {
'V0': {'Assets': ['scale_info::395']},
'V1': {'Assets': ['scale_info::406'], 'Version': 'u32'},
'V2': {
'Assets': ['scale_info::406'],
'ExecutionResult': (None, ('u32', 'scale_info::422')),
'Null': None,
'Version': 'u32',
},
},
},
'VersionNotifier': {
'is_active': 'bool',
'origin': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::391', 'scale_info::391'),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::160',
'X2': ('scale_info::160', 'scale_info::160'),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
},
},
}
QueryCounter¶
The latest available query index.
Python¶
result = substrate.query(
'XcmPallet', 'QueryCounter', []
)
Return value¶
'u64'
SafeXcmVersion¶
Default version to encode XCM when latest version of destination is unknown. If None,
then the destinations whose XCM version is unknown are considered unreachable.
Python¶
result = substrate.query(
'XcmPallet', 'SafeXcmVersion', []
)
Return value¶
'u32'
SupportedVersion¶
The Latest versions that we know various locations support.
Python¶
result = substrate.query(
'XcmPallet', 'SupportedVersion', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u32'
VersionDiscoveryQueue¶
Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
the u32 counter is the number of times that a send to the destination has been attempted,
which is used as a prioritization.
Python¶
result = substrate.query(
'XcmPallet', 'VersionDiscoveryQueue', []
)
Return value¶
[
(
{
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::391', 'scale_info::391'),
'X3': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X4': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X5': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X6': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X7': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
'X8': (
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
'scale_info::391',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::160',
'X2': ('scale_info::160', 'scale_info::160'),
'X3': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X4': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X5': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X6': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X7': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
'X8': (
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
'scale_info::160',
),
},
'parents': 'u8',
},
},
'u32',
),
]
VersionNotifiers¶
All locations that we have requested version notifications from.
Python¶
result = substrate.query(
'XcmPallet', 'VersionNotifiers', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u64'
VersionNotifyTargets¶
The target locations that are subscribed to our version changes, as well as the most recent of our versions we informed them of.
Python¶
result = substrate.query(
'XcmPallet', 'VersionNotifyTargets', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Administration': None,
'Defense': None,
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Treasury': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::161',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::161',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::161',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::163',
'part': 'scale_info::164',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
('u64', 'u64', 'u32')
Errors¶
AlreadySubscribed¶
The location is invalid since it already has a subscription from us.
BadLocation¶
The given location could not be used (e.g. because it cannot be expressed in the desired version of XCM).
BadVersion¶
The version of the Versioned value used is not able to be interpreted.
CannotReanchor¶
Could not re-anchor the assets to declare the fees for the destination chain.
DestinationNotInvertible¶
The destination MultiLocation provided cannot be inverted.
Empty¶
The assets to be sent are empty.
Filtered¶
The message execution fails the filter.
InvalidOrigin¶
Origin is invalid for sending.
NoSubscription¶
The referenced subscription could not be found.
SendFailure¶
There was some other issue (i.e. not to do with routing) in sending the message. Perhaps a lack of space for buffering the message.
TooManyAssets¶
Too many assets have been attempted for transfer.
Unreachable¶
The desired destination was unreachable, generally because there is a no way of routing to it.
UnweighableMessage¶
The message's weight could not be determined.